diff options
author | Shantonu Sen <ssen@apple.com> | 2009-09-18 20:35:59 +0000 |
---|---|---|
committer | Shantonu Sen <ssen@apple.com> | 2009-09-18 20:35:59 +0000 |
commit | 7ba874bb5e4ed682d1445e211092d49510e111cc (patch) | |
tree | b4175e529db8f7eff1c06b6a75dbf7edf0352f0a /llvm/lib | |
parent | 3a78ce3a56342395ebcbfe8197855941d5d319e9 (diff) | |
download | bcm5719-llvm-7ba874bb5e4ed682d1445e211092d49510e111cc.tar.gz bcm5719-llvm-7ba874bb5e4ed682d1445e211092d49510e111cc.zip |
Fix cmake build, which has a different -I that
causes the "../foo" to not find the file
llvm-svn: 82270
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp b/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp index 5697fdd4fa0..857d80b221d 100644 --- a/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp +++ b/llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp @@ -19,7 +19,7 @@ #include "llvm/MC/MCExpr.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FormattedStream.h" -#include "../X86GenInstrNames.inc" +#include "X86GenInstrNames.inc" using namespace llvm; // Include the auto-generated portion of the assembly writer. |