[llvm-commits] CVS: llvm/include/llvm/Constant.h ConstantHandling.h Constants.h DerivedTypes.h GlobalVariable.h Instruction.h Pass.h PassAnalysisSupport.h PassSupport.h SymbolTable.h User.h iOther.h iPHINode.h iTerminators.h

Chris Lattner lattner at cs.uiuc.edu
Sat Jun 21 22:08:07 PDT 2003


Changes in directory llvm/include/llvm:

Constant.h updated: 1.7 -> 1.8
ConstantHandling.h updated: 1.26 -> 1.27
Constants.h updated: 1.26 -> 1.27
DerivedTypes.h updated: 1.30 -> 1.31
GlobalVariable.h updated: 1.20 -> 1.21
Instruction.h updated: 1.40 -> 1.41
Pass.h updated: 1.33 -> 1.34
PassAnalysisSupport.h updated: 1.12 -> 1.13
PassSupport.h updated: 1.12 -> 1.13
SymbolTable.h updated: 1.21 -> 1.22
User.h updated: 1.19 -> 1.20
iOther.h updated: 1.35 -> 1.36
iPHINode.h updated: 1.9 -> 1.10
iTerminators.h updated: 1.28 -> 1.29

---
Log message:

Remove a ton of extraneous #includes


---
Diffs of the changes:

Index: llvm/include/llvm/Constant.h
diff -u llvm/include/llvm/Constant.h:1.7 llvm/include/llvm/Constant.h:1.8
--- llvm/include/llvm/Constant.h:1.7	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/Constant.h	Sat Jun 21 22:07:32 2003
@@ -7,7 +7,6 @@
 #ifndef LLVM_CONSTANT_H
 #define LLVM_CONSTANT_H
 
-#include <assert.h>
 #include "llvm/User.h"
 
 class Constant : public User {


Index: llvm/include/llvm/ConstantHandling.h
diff -u llvm/include/llvm/ConstantHandling.h:1.26 llvm/include/llvm/ConstantHandling.h:1.27
--- llvm/include/llvm/ConstantHandling.h:1.26	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/ConstantHandling.h	Sat Jun 21 22:07:32 2003
@@ -33,8 +33,6 @@
 #ifndef LLVM_CONSTANTHANDLING_H
 #define LLVM_CONSTANTHANDLING_H
 
-#include <assert.h>
-
 #include "llvm/Constants.h"
 #include "llvm/Type.h"
 class PointerType;


Index: llvm/include/llvm/Constants.h
diff -u llvm/include/llvm/Constants.h:1.26 llvm/include/llvm/Constants.h:1.27
--- llvm/include/llvm/Constants.h:1.26	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/Constants.h	Sat Jun 21 22:07:32 2003
@@ -8,8 +8,6 @@
 #ifndef LLVM_CONSTANTS_H
 #define LLVM_CONSTANTS_H
 
-#include <assert.h>
-
 #include "llvm/Constant.h"
 #include "Support/DataTypes.h"
 


Index: llvm/include/llvm/DerivedTypes.h
diff -u llvm/include/llvm/DerivedTypes.h:1.30 llvm/include/llvm/DerivedTypes.h:1.31
--- llvm/include/llvm/DerivedTypes.h:1.30	Wed Jun 18 14:22:36 2003
+++ llvm/include/llvm/DerivedTypes.h	Sat Jun 21 22:07:32 2003
@@ -11,8 +11,6 @@
 #ifndef LLVM_DERIVED_TYPES_H
 #define LLVM_DERIVED_TYPES_H
 
-#include <assert.h>
-
 #include "llvm/Type.h"
 
 class DerivedType : public Type {


Index: llvm/include/llvm/GlobalVariable.h
diff -u llvm/include/llvm/GlobalVariable.h:1.20 llvm/include/llvm/GlobalVariable.h:1.21
--- llvm/include/llvm/GlobalVariable.h:1.20	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/GlobalVariable.h	Sat Jun 21 22:07:32 2003
@@ -13,8 +13,6 @@
 #ifndef LLVM_GLOBAL_VARIABLE_H
 #define LLVM_GLOBAL_VARIABLE_H
 
-#include <assert.h>
-
 #include "llvm/GlobalValue.h"
 class Module;
 class Constant;


Index: llvm/include/llvm/Instruction.h
diff -u llvm/include/llvm/Instruction.h:1.40 llvm/include/llvm/Instruction.h:1.41
--- llvm/include/llvm/Instruction.h:1.40	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/Instruction.h	Sat Jun 21 22:07:32 2003
@@ -8,8 +8,6 @@
 #ifndef LLVM_INSTRUCTION_H
 #define LLVM_INSTRUCTION_H
 
-#include <assert.h>
-
 #include "llvm/User.h"
 template<typename SC> struct ilist_traits;
 template<typename ValueSubClass, typename ItemParentClass, typename SymTabClass,


Index: llvm/include/llvm/Pass.h
diff -u llvm/include/llvm/Pass.h:1.33 llvm/include/llvm/Pass.h:1.34
--- llvm/include/llvm/Pass.h:1.33	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/Pass.h	Sat Jun 21 22:07:32 2003
@@ -23,7 +23,6 @@
 #define LLVM_PASS_H
 
 #include <assert.h>
-
 #include <vector>
 #include <map>
 #include <iosfwd>


Index: llvm/include/llvm/PassAnalysisSupport.h
diff -u llvm/include/llvm/PassAnalysisSupport.h:1.12 llvm/include/llvm/PassAnalysisSupport.h:1.13
--- llvm/include/llvm/PassAnalysisSupport.h:1.12	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/PassAnalysisSupport.h	Sat Jun 21 22:07:32 2003
@@ -14,8 +14,6 @@
 
 // No need to include Pass.h, we are being included by it!
 
-#include <assert.h>
-
 //===----------------------------------------------------------------------===//
 // AnalysisUsage - Represent the analysis usage information of a pass.  This
 // tracks analyses that the pass REQUIRES (must available when the pass runs),


Index: llvm/include/llvm/PassSupport.h
diff -u llvm/include/llvm/PassSupport.h:1.12 llvm/include/llvm/PassSupport.h:1.13
--- llvm/include/llvm/PassSupport.h:1.12	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/PassSupport.h	Sat Jun 21 22:07:32 2003
@@ -14,8 +14,6 @@
 #ifndef LLVM_PASS_SUPPORT_H
 #define LLVM_PASS_SUPPORT_H
 
-#include <assert.h>
-
 // No need to include Pass.h, we are being included by it!
 
 class TargetMachine;


Index: llvm/include/llvm/SymbolTable.h
diff -u llvm/include/llvm/SymbolTable.h:1.21 llvm/include/llvm/SymbolTable.h:1.22
--- llvm/include/llvm/SymbolTable.h:1.21	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/SymbolTable.h	Sat Jun 21 22:07:32 2003
@@ -16,8 +16,6 @@
 #ifndef LLVM_SYMBOL_TABLE_H
 #define LLVM_SYMBOL_TABLE_H
 
-#include <assert.h>
-
 #include "llvm/Value.h"
 #include <map>
 


Index: llvm/include/llvm/User.h
diff -u llvm/include/llvm/User.h:1.19 llvm/include/llvm/User.h:1.20
--- llvm/include/llvm/User.h:1.19	Tue Jun 17 17:15:55 2003
+++ llvm/include/llvm/User.h	Sat Jun 21 22:07:32 2003
@@ -12,8 +12,6 @@
 #ifndef LLVM_USER_H
 #define LLVM_USER_H
 
-#include <assert.h>
-
 #include "llvm/Value.h"
 
 class User : public Value {


Index: llvm/include/llvm/iOther.h
diff -u llvm/include/llvm/iOther.h:1.35 llvm/include/llvm/iOther.h:1.36
--- llvm/include/llvm/iOther.h:1.35	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/iOther.h	Sat Jun 21 22:07:32 2003
@@ -8,8 +8,6 @@
 #ifndef LLVM_IOTHER_H
 #define LLVM_IOTHER_H
 
-#include <assert.h>
-
 #include "llvm/InstrTypes.h"
 
 //===----------------------------------------------------------------------===//


Index: llvm/include/llvm/iPHINode.h
diff -u llvm/include/llvm/iPHINode.h:1.9 llvm/include/llvm/iPHINode.h:1.10
--- llvm/include/llvm/iPHINode.h:1.9	Wed Jun 11 09:01:26 2003
+++ llvm/include/llvm/iPHINode.h	Sat Jun 21 22:07:32 2003
@@ -7,8 +7,6 @@
 #ifndef LLVM_IPHINODE_H
 #define LLVM_IPHINODE_H
 
-#include <assert.h>
-
 #include "llvm/Instruction.h"
 class BasicBlock;
 


Index: llvm/include/llvm/iTerminators.h
diff -u llvm/include/llvm/iTerminators.h:1.28 llvm/include/llvm/iTerminators.h:1.29
--- llvm/include/llvm/iTerminators.h:1.28	Thu Jun 19 12:03:00 2003
+++ llvm/include/llvm/iTerminators.h	Sat Jun 21 22:07:32 2003
@@ -9,8 +9,6 @@
 #ifndef LLVM_ITERMINATORS_H
 #define LLVM_ITERMINATORS_H
 
-#include <assert.h>
-
 #include "llvm/InstrTypes.h"
 
 //===---------------------------------------------------------------------------





More information about the llvm-commits mailing list