diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-09-22 20:50:40 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-09-22 20:50:40 +0000 |
commit | 62ab31103a0656f6ce032e20d3874dd9c5c7cccc (patch) | |
tree | e2b08ff91496f34d8c324f1fb1c498547c8a9749 /utils | |
parent | 945522f6b1f2d21bbe7bcd69c174a8e455c84f8c (diff) | |
download | external_llvm-62ab31103a0656f6ce032e20d3874dd9c5c7cccc.zip external_llvm-62ab31103a0656f6ce032e20d3874dd9c5c7cccc.tar.gz external_llvm-62ab31103a0656f6ce032e20d3874dd9c5c7cccc.tar.bz2 |
Move llvmc2 header files under include/llvm/CompilerDriver
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/LLVMCConfigurationEmitter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp index 9bb3be3..4372903 100644 --- a/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/utils/TableGen/LLVMCConfigurationEmitter.cpp @@ -1722,9 +1722,9 @@ void EmitRegisterPlugin(std::ostream& O) { /// EmitInclude - Emit necessary #include directives. void EmitIncludes(std::ostream& O) { - O << "#include \"CompilationGraph.h\"\n" - << "#include \"Plugin.h\"\n" - << "#include \"Tool.h\"\n\n" + O << "#include \"llvm/CompilerDriver/CompilationGraph.h\"\n" + << "#include \"llvm/CompilerDriver/Plugin.h\"\n" + << "#include \"llvm/CompilerDriver/Tool.h\"\n\n" << "#include \"llvm/ADT/StringExtras.h\"\n" << "#include \"llvm/Support/CommandLine.h\"\n\n" |