diff options
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/CodeGen/MachineCodeForMethod.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/MachineFunction.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 3 | ||||
-rw-r--r-- | include/llvm/Target/TargetRegInfo.h | 2 | ||||
-rw-r--r-- | include/llvm/Target/TargetSchedInfo.h | 2 |
5 files changed, 5 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/MachineCodeForMethod.h b/include/llvm/CodeGen/MachineCodeForMethod.h index fb9eaf8..e1b8e4f 100644 --- a/include/llvm/CodeGen/MachineCodeForMethod.h +++ b/include/llvm/CodeGen/MachineCodeForMethod.h @@ -12,7 +12,7 @@ #include "llvm/Annotation.h" #include "Support/NonCopyable.h" #include "Support/HashExtras.h" -#include <ext/hash_set> +#include <Support/hash_set> class Value; class Function; class Constant; diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index fb9eaf8..e1b8e4f 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -12,7 +12,7 @@ #include "llvm/Annotation.h" #include "Support/NonCopyable.h" #include "Support/HashExtras.h" -#include <ext/hash_set> +#include <Support/hash_set> class Value; class Function; class Constant; diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 2c183e1..c81eb87 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -12,10 +12,9 @@ #include "llvm/Target/MachineInstrInfo.h" #include "llvm/Annotation.h" #include <iterator> -#include <ext/hash_set> +#include <Support/hash_set> class Instruction; using std::vector; -using std::hash_set; //--------------------------------------------------------------------------- // class MachineOperand diff --git a/include/llvm/Target/TargetRegInfo.h b/include/llvm/Target/TargetRegInfo.h index 7ec5ee2..4f809bf 100644 --- a/include/llvm/Target/TargetRegInfo.h +++ b/include/llvm/Target/TargetRegInfo.h @@ -9,7 +9,7 @@ #define LLVM_TARGET_MACHINEREGINFO_H #include "Support/NonCopyable.h" -#include <ext/hash_map> +#include <Support/hash_map> #include <string> class TargetMachine; diff --git a/include/llvm/Target/TargetSchedInfo.h b/include/llvm/Target/TargetSchedInfo.h index 12539b6..ba065cb 100644 --- a/include/llvm/Target/TargetSchedInfo.h +++ b/include/llvm/Target/TargetSchedInfo.h @@ -7,8 +7,8 @@ #ifndef LLVM_TARGET_MACHINESCHEDINFO_H #define LLVM_TARGET_MACHINESCHEDINFO_H -#include <ext/hash_map> #include "llvm/Target/MachineInstrInfo.h" +#include <Support/hash_map> typedef long long cycles_t; static const cycles_t HUGE_LATENCY = ~((long long) 1 << (sizeof(cycles_t)-2)); |