[llvm-commits] [llvm] r82270 - /llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
Shantonu Sen
ssen at apple.com
Fri Sep 18 13:36:00 PDT 2009
Author: ssen
Date: Fri Sep 18 15:35:59 2009
New Revision: 82270
URL: http://llvm.org/viewvc/llvm-project?rev=82270&view=rev
Log:
Fix cmake build, which has a different -I that
causes the "../foo" to not find the file
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=82270&r1=82269&r2=82270&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp (original)
+++ llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp Fri Sep 18 15:35:59 2009
@@ -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.
More information about the llvm-commits
mailing list