[llvm-commits] CVS: llvm/include/llvm/Target/MachineRegInfo.h MachineSchedInfo.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 27 20:12:13 PST 2002
Changes in directory llvm/include/llvm/Target:
MachineRegInfo.h updated: 1.27 -> 1.28
MachineSchedInfo.h updated: 1.9 -> 1.10
---
Log message:
Don't #include <Support/*>, #include "Support/*"
---
Diffs of the changes:
Index: llvm/include/llvm/Target/MachineRegInfo.h
diff -u llvm/include/llvm/Target/MachineRegInfo.h:1.27 llvm/include/llvm/Target/MachineRegInfo.h:1.28
--- llvm/include/llvm/Target/MachineRegInfo.h:1.27 Sat Sep 28 11:56:59 2002
+++ llvm/include/llvm/Target/MachineRegInfo.h Sun Oct 27 20:11:34 2002
@@ -9,7 +9,7 @@
#define LLVM_TARGET_MACHINEREGINFO_H
#include "Support/NonCopyable.h"
-#include <Support/hash_map>
+#include "Support/hash_map"
#include <string>
class TargetMachine;
Index: llvm/include/llvm/Target/MachineSchedInfo.h
diff -u llvm/include/llvm/Target/MachineSchedInfo.h:1.9 llvm/include/llvm/Target/MachineSchedInfo.h:1.10
--- llvm/include/llvm/Target/MachineSchedInfo.h:1.9 Sat Oct 12 19:36:36 2002
+++ llvm/include/llvm/Target/MachineSchedInfo.h Sun Oct 27 20:11:34 2002
@@ -8,7 +8,7 @@
#define LLVM_TARGET_MACHINESCHEDINFO_H
#include "llvm/Target/MachineInstrInfo.h"
-#include <Support/hash_map>
+#include "Support/hash_map"
typedef long long cycles_t;
static const cycles_t HUGE_LATENCY = ~((long long) 1 << (sizeof(cycles_t)-2));
More information about the llvm-commits
mailing list