[llvm-commits] CVS: llvm/include/llvm/Target/TargetCacheInfo.h TargetInstrInfo.h TargetRegInfo.h TargetSchedInfo.h

John Criswell criswell at cs.uiuc.edu
Wed Jun 11 09:02:13 PDT 2003


Changes in directory llvm/include/llvm/Target:

TargetCacheInfo.h updated: 1.8 -> 1.9
TargetInstrInfo.h updated: 1.44 -> 1.45
TargetRegInfo.h updated: 1.37 -> 1.38
TargetSchedInfo.h updated: 1.16 -> 1.17

---
Log message:

Included assert.h so that the code compiles under newer versions of GCC.


---
Diffs of the changes:

Index: llvm/include/llvm/Target/TargetCacheInfo.h
diff -u llvm/include/llvm/Target/TargetCacheInfo.h:1.8 llvm/include/llvm/Target/TargetCacheInfo.h:1.9
--- llvm/include/llvm/Target/TargetCacheInfo.h:1.8	Tue Jun  3 10:28:40 2003
+++ llvm/include/llvm/Target/TargetCacheInfo.h	Wed Jun 11 09:01:36 2003
@@ -8,6 +8,8 @@
 #define LLVM_TARGET_TARGETCACHEINFO_H
 
 #include "Support/DataTypes.h"
+#include <assert.h>
+
 class TargetMachine;
 
 struct TargetCacheInfo {


Index: llvm/include/llvm/Target/TargetInstrInfo.h
diff -u llvm/include/llvm/Target/TargetInstrInfo.h:1.44 llvm/include/llvm/Target/TargetInstrInfo.h:1.45
--- llvm/include/llvm/Target/TargetInstrInfo.h:1.44	Fri May 23 20:08:40 2003
+++ llvm/include/llvm/Target/TargetInstrInfo.h	Wed Jun 11 09:01:36 2003
@@ -9,6 +9,7 @@
 
 #include "Support/DataTypes.h"
 #include <vector>
+#include <assert.h>
 
 class MachineInstr;
 class TargetMachine;


Index: llvm/include/llvm/Target/TargetRegInfo.h
diff -u llvm/include/llvm/Target/TargetRegInfo.h:1.37 llvm/include/llvm/Target/TargetRegInfo.h:1.38
--- llvm/include/llvm/Target/TargetRegInfo.h:1.37	Tue Jun  3 10:28:40 2003
+++ llvm/include/llvm/Target/TargetRegInfo.h	Wed Jun 11 09:01:36 2003
@@ -10,6 +10,7 @@
 
 #include "Support/hash_map"
 #include <string>
+#include <assert.h>
 
 class TargetMachine;
 class IGNode;


Index: llvm/include/llvm/Target/TargetSchedInfo.h
diff -u llvm/include/llvm/Target/TargetSchedInfo.h:1.16 llvm/include/llvm/Target/TargetSchedInfo.h:1.17
--- llvm/include/llvm/Target/TargetSchedInfo.h:1.16	Sun Apr  6 19:25:09 2003
+++ llvm/include/llvm/Target/TargetSchedInfo.h	Wed Jun 11 09:01:36 2003
@@ -10,6 +10,7 @@
 #include "llvm/Target/TargetInstrInfo.h"
 #include "Support/hash_map"
 #include <string>
+#include <assert.h>
 
 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