diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-01 18:15:35 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-01 18:15:35 +0000 |
commit | 2dad0250f683ac5b28a8984ce5be00d299f3c35e (patch) | |
tree | 540433a66cd1a607b2c71e8e1fbde00ff7d564f0 | |
parent | f1a792bc59a4d65d0e346109c681768e07e62be5 (diff) |
Prune a few dependencies on MachineFunction.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52976 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 1 | ||||
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 1 | ||||
-rw-r--r-- | lib/Target/X86/X86RegisterInfo.cpp | 1 |
3 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 3b16ef1645..2fb2a68b36 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -16,7 +16,6 @@ #ifndef LLVM_TARGET_ASM_INFO_H #define LLVM_TARGET_ASM_INFO_H -#include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/Support/DataTypes.h" namespace llvm { diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 48286e915e..940434c731 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -20,7 +20,6 @@ #include "llvm/Instructions.h" #include "llvm/ModuleProvider.h" #include "llvm/CodeGen/MachineCodeEmitter.h" -#include "llvm/CodeGen/MachineFunction.h" #include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/Support/MutexGuard.h" #include "llvm/System/DynamicLibrary.h" diff --git a/lib/Target/X86/X86RegisterInfo.cpp b/lib/Target/X86/X86RegisterInfo.cpp index 1f04380f32..7270cd3b13 100644 --- a/lib/Target/X86/X86RegisterInfo.cpp +++ b/lib/Target/X86/X86RegisterInfo.cpp @@ -25,6 +25,7 @@ #include "llvm/CodeGen/ValueTypes.h" #include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineFunction.h" +#include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineLocation.h" #include "llvm/CodeGen/MachineModuleInfo.h" |