mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Move llvmc2 header files under include/llvm/CompilerDriver
llvm-svn: 56466
This commit is contained in:
parent
3895eee874
commit
cf04ed88af
@ -14,7 +14,7 @@
|
||||
#ifndef LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
|
||||
#define LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
|
||||
|
||||
#include "Tool.h"
|
||||
#include "llvm/CompilerDriver/Tool.h"
|
||||
|
||||
#include "llvm/ADT/GraphTraits.h"
|
||||
#include "llvm/ADT/IntrusiveRefCntPtr.h"
|
@ -14,7 +14,7 @@
|
||||
#ifndef LLVM_TOOLS_LLVMC2_TOOL_H
|
||||
#define LLVM_TOOLS_LLVMC2_TOOL_H
|
||||
|
||||
#include "Action.h"
|
||||
#include "llvm/CompilerDriver/Action.h"
|
||||
|
||||
#include "llvm/ADT/IntrusiveRefCntPtr.h"
|
||||
#include "llvm/ADT/StringSet.h"
|
@ -11,7 +11,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Action.h"
|
||||
#include "llvm/CompilerDriver/Action.h"
|
||||
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/System/Program.h"
|
||||
|
@ -12,7 +12,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Error.h"
|
||||
#include "CompilationGraph.h"
|
||||
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Plugin.h"
|
||||
#include "llvm/CompilerDriver/Plugin.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -14,9 +14,10 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "CompilationGraph.h"
|
||||
#include "Error.h"
|
||||
#include "Plugin.h"
|
||||
|
||||
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||
#include "llvm/CompilerDriver/Plugin.h"
|
||||
|
||||
#include "llvm/System/Path.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
|
@ -11,11 +11,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// TODO: Since llvmc2 has now gained support for plugins, its header
|
||||
// files should be probably moved into LLVM include dir.
|
||||
|
||||
#include "../../CompilationGraph.h"
|
||||
#include "../../Plugin.h"
|
||||
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||
#include "llvm/CompilerDriver/Plugin.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user