forked from OSchip/llvm-project
Remove unncessary check for Int_* and *_Int in AsmMatcherEmitter. These are all marked isCodeGenOnly these days.
llvm-svn: 222783
This commit is contained in:
parent
03ec801126
commit
6a257d78dd
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue