From: Shantonu Sen Date: Fri, 18 Sep 2009 20:35:59 +0000 (+0000) Subject: Fix cmake build, which has a different -I that X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=558b79a399b0b6642e193d4fe59ac01e1f9cbba4;p=oota-llvm.git Fix cmake build, which has a different -I that causes the "../foo" to not find the file git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82270 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp b/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp index 5697fdd4fa0..857d80b221d 100644 --- a/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp +++ b/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.