forked from OSchip/llvm-project
Use additionnal include directory instead of ../ in #include.
Suggested by aKor. llvm-svn: 55282
This commit is contained in:
parent
75b34536d0
commit
404cd15fa5
|
@ -15,11 +15,11 @@
|
|||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "X86ATTAsmPrinter.h"
|
||||
#include "../X86.h"
|
||||
#include "../X86COFF.h"
|
||||
#include "../X86MachineFunctionInfo.h"
|
||||
#include "../X86TargetMachine.h"
|
||||
#include "../X86TargetAsmInfo.h"
|
||||
#include "X86.h"
|
||||
#include "X86COFF.h"
|
||||
#include "X86MachineFunctionInfo.h"
|
||||
#include "X86TargetMachine.h"
|
||||
#include "X86TargetAsmInfo.h"
|
||||
#include "llvm/CallingConv.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/Module.h"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
#include "X86ATTAsmPrinter.h"
|
||||
#include "X86IntelAsmPrinter.h"
|
||||
#include "../X86Subtarget.h"
|
||||
#include "X86Subtarget.h"
|
||||
using namespace llvm;
|
||||
|
||||
/// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "X86IntelAsmPrinter.h"
|
||||
#include "../X86InstrInfo.h"
|
||||
#include "../X86TargetAsmInfo.h"
|
||||
#include "../X86.h"
|
||||
#include "X86InstrInfo.h"
|
||||
#include "X86TargetAsmInfo.h"
|
||||
#include "X86.h"
|
||||
#include "llvm/CallingConv.h"
|
||||
#include "llvm/Constants.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=".;..\..\include;.."
|
||||
AdditionalIncludeDirectories=".;..\..\include;..;..\..\lib\Target\X86"
|
||||
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS"
|
||||
StringPooling="true"
|
||||
MinimalRebuild="true"
|
||||
|
@ -114,7 +114,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=".;..\..\include;.."
|
||||
AdditionalIncludeDirectories=".;..\..\include;..;..\..\lib\Target\X86"
|
||||
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;WIN32;NDEBUG;_LIB;__STDC_LIMIT_MACROS"
|
||||
StringPooling="true"
|
||||
RuntimeLibrary="2"
|
||||
|
@ -565,10 +565,6 @@
|
|||
<Filter
|
||||
Name="Generated Tablegen Files"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\X86GenFastISel.inc"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\X86GenAsmWriter.inc"
|
||||
>
|
||||
|
@ -581,6 +577,10 @@
|
|||
RelativePath=".\X86GenDAGISel.inc"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\X86GenFastISel.inc"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\X86GenInstrInfo.inc"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue