mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 21:34:23 +00:00
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
This commit is contained in:
parent
c82ce4a8a7
commit
4a1a77c1c9
@ -14,7 +14,7 @@
|
|||||||
#ifndef LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
|
#ifndef LLVM_TOOLS_LLVMC2_COMPILATION_GRAPH_H
|
||||||
#define 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/GraphTraits.h"
|
||||||
#include "llvm/ADT/IntrusiveRefCntPtr.h"
|
#include "llvm/ADT/IntrusiveRefCntPtr.h"
|
@ -14,7 +14,7 @@
|
|||||||
#ifndef LLVM_TOOLS_LLVMC2_TOOL_H
|
#ifndef LLVM_TOOLS_LLVMC2_TOOL_H
|
||||||
#define 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/IntrusiveRefCntPtr.h"
|
||||||
#include "llvm/ADT/StringSet.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/Support/CommandLine.h"
|
||||||
#include "llvm/System/Program.h"
|
#include "llvm/System/Program.h"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "Error.h"
|
#include "Error.h"
|
||||||
#include "CompilationGraph.h"
|
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||||
|
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "Plugin.h"
|
#include "llvm/CompilerDriver/Plugin.h"
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -14,9 +14,10 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "CompilationGraph.h"
|
|
||||||
#include "Error.h"
|
#include "Error.h"
|
||||||
#include "Plugin.h"
|
|
||||||
|
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||||
|
#include "llvm/CompilerDriver/Plugin.h"
|
||||||
|
|
||||||
#include "llvm/System/Path.h"
|
#include "llvm/System/Path.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
|
@ -11,11 +11,8 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
// TODO: Since llvmc2 has now gained support for plugins, its header
|
#include "llvm/CompilerDriver/CompilationGraph.h"
|
||||||
// files should be probably moved into LLVM include dir.
|
#include "llvm/CompilerDriver/Plugin.h"
|
||||||
|
|
||||||
#include "../../CompilationGraph.h"
|
|
||||||
#include "../../Plugin.h"
|
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
@ -1722,9 +1722,9 @@ void EmitRegisterPlugin(std::ostream& O) {
|
|||||||
|
|
||||||
/// EmitInclude - Emit necessary #include directives.
|
/// EmitInclude - Emit necessary #include directives.
|
||||||
void EmitIncludes(std::ostream& O) {
|
void EmitIncludes(std::ostream& O) {
|
||||||
O << "#include \"CompilationGraph.h\"\n"
|
O << "#include \"llvm/CompilerDriver/CompilationGraph.h\"\n"
|
||||||
<< "#include \"Plugin.h\"\n"
|
<< "#include \"llvm/CompilerDriver/Plugin.h\"\n"
|
||||||
<< "#include \"Tool.h\"\n\n"
|
<< "#include \"llvm/CompilerDriver/Tool.h\"\n\n"
|
||||||
|
|
||||||
<< "#include \"llvm/ADT/StringExtras.h\"\n"
|
<< "#include \"llvm/ADT/StringExtras.h\"\n"
|
||||||
<< "#include \"llvm/Support/CommandLine.h\"\n\n"
|
<< "#include \"llvm/Support/CommandLine.h\"\n\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user