aboutsummaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-24 21:21:32 +0000
committerChris Lattner <sabre@nondot.org>2002-07-24 21:21:32 +0000
commit09ff1126dab045d68be7d9e8ae7ad0601002a718 (patch)
treee4fb571d35f390670aed304ba303b5d2a55593d2 /include/llvm
parent417d31c202bf42c1f9db1afa1d2e6730c6fbd566 (diff)
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3056 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/MachineCodeForMethod.h2
-rw-r--r--include/llvm/CodeGen/MachineFunction.h2
-rw-r--r--include/llvm/CodeGen/MachineInstr.h3
-rw-r--r--include/llvm/Target/TargetRegInfo.h2
-rw-r--r--include/llvm/Target/TargetSchedInfo.h2
5 files changed, 5 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/MachineCodeForMethod.h b/include/llvm/CodeGen/MachineCodeForMethod.h
index fb9eaf8fe9..e1b8e4f1f5 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 fb9eaf8fe9..e1b8e4f1f5 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 2c183e1da9..c81eb87e73 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 7ec5ee26b0..4f809bfb15 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 12539b686f..ba065cba09 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));