diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-18 18:08:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-18 18:08:55 +0000 |
commit | 1e64038bcb41bb9b40dd8399ed7409ebf87b72e3 (patch) | |
tree | f82328cc8d3a55ece875652b985b53dc3e8fa07a /llvm/lib | |
parent | 2ecab75739d2fec4f8c976094e9b2a7f38aad082 (diff) | |
download | bcm5719-llvm-1e64038bcb41bb9b40dd8399ed7409ebf87b72e3.tar.gz bcm5719-llvm-1e64038bcb41bb9b40dd8399ed7409ebf87b72e3.zip |
This file can need access to the X86 instruction enums when the table exceeds 32-bits.
llvm-svn: 82235
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp b/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp index 7576ab371d0..5697fdd4fa0 100644 --- a/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp +++ b/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp @@ -19,6 +19,7 @@ #include "llvm/MC/MCExpr.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FormattedStream.h" +#include "../X86GenInstrNames.inc" using namespace llvm; // Include the auto-generated portion of the assembly writer. |