[llvm-commits] [llvm] r82235 - /llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
Chris Lattner
sabre at nondot.org
Fri Sep 18 11:08:55 PDT 2009
Author: lattner
Date: Fri Sep 18 13:08:55 2009
New Revision: 82235
URL: http://llvm.org/viewvc/llvm-project?rev=82235&view=rev
Log:
This file can need access to the X86 instruction enums when the table exceeds 32-bits.
Modified:
llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
Modified: llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp?rev=82235&r1=82234&r2=82235&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp (original)
+++ llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp Fri Sep 18 13:08:55 2009
@@ -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.
More information about the llvm-commits
mailing list