diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-30 23:13:40 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-30 23:13:40 +0000 |
commit | 682de39f2d67e6e4bb2ef83048114fe629ea9d3a (patch) | |
tree | ee682df591d2bbe35a4e66a161f14d5b3b720de0 /llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp | |
parent | 210f29f44b6055c537526f6259d9bff8deb2b7fd (diff) | |
download | bcm5719-llvm-682de39f2d67e6e4bb2ef83048114fe629ea9d3a.tar.gz bcm5719-llvm-682de39f2d67e6e4bb2ef83048114fe629ea9d3a.zip |
Rip out emission of the regIsInRegClass function for the asm printer.
It's slow, bloated and completely redundant with MCRegisterClass::contains.
llvm-svn: 153782
Diffstat (limited to 'llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp b/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp index b7ccb4c09b2..ec35d3c911e 100644 --- a/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp +++ b/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp @@ -19,6 +19,7 @@ #include "llvm/MC/MCInst.h" #include "llvm/MC/MCAsmInfo.h" #include "llvm/MC/MCExpr.h" +#include "llvm/MC/MCRegisterInfo.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Format.h" #include "llvm/Support/FormattedStream.h" |