Remove unncessary check for Int_* and *_Int in AsmMatcherEmitter. These are all marke...
[oota-llvm.git] / utils / TableGen / AsmMatcherEmitter.cpp
index aba01a8878dd24efa160f9d282302079882778d5..82d08370c14e78f4f5abed4f1f46cb8403bf48b4 100644 (file)
@@ -1350,13 +1350,6 @@ void AsmMatcherInfo::buildInfo() {
       if (!II->validate(CommentDelimiter, true))
         continue;
 
-      // Ignore "Int_*" and "*_Int" instructions, which are internal aliases.
-      //
-      // FIXME: This is a total hack.
-      if (StringRef(II->TheDef->getName()).startswith("Int_") ||
-          StringRef(II->TheDef->getName()).endswith("_Int"))
-        continue;
-
       Matchables.push_back(II.release());
     }