[llvm-commits] CVS: llvm/include/Support/Annotation.h BitSetVector.h Casting.h CommandLine.h TarjanSCCIterator.h Timer.h Tree.h ilist

John Criswell criswell at choi.cs.uiuc.edu
Fri Jun 27 13:33:00 PDT 2003


Changes in directory llvm/include/Support:

Annotation.h updated: 1.8.2.1 -> 1.8.2.2
BitSetVector.h updated: 1.5.2.2 -> 1.5.2.3
Casting.h updated: 1.5.2.1 -> 1.5.2.2
CommandLine.h updated: 1.12.2.2 -> 1.12.2.3
TarjanSCCIterator.h updated: 1.5.2.2 -> 1.5.2.3
Timer.h updated: 1.6.2.2 -> 1.6.2.3
Tree.h updated: 1.3.2.2 -> 1.3.2.3
ilist updated: 1.6.2.2 -> 1.6.2.3

---
Log message:

Removed the user of assert.h.  It is now globally included in
llvm/AbstractTypeUser.h.
Updated some of the files to use the header files from include/Config instead
of directly including the system header files.


---
Diffs of the changes:

Index: llvm/include/Support/Annotation.h
diff -u llvm/include/Support/Annotation.h:1.8.2.1 llvm/include/Support/Annotation.h:1.8.2.2
--- llvm/include/Support/Annotation.h:1.8.2.1	Mon Jun 23 13:50:38 2003
+++ llvm/include/Support/Annotation.h	Fri Jun 27 13:31:59 2003
@@ -16,7 +16,6 @@
 #define SUPPORT_ANNOTATION_H
 
 #include <string>
-#include "Config/assert.h"
 
 class AnnotationID;
 class Annotation;


Index: llvm/include/Support/BitSetVector.h
diff -u llvm/include/Support/BitSetVector.h:1.5.2.2 llvm/include/Support/BitSetVector.h:1.5.2.3
--- llvm/include/Support/BitSetVector.h:1.5.2.2	Thu Jun 26 16:34:32 2003
+++ llvm/include/Support/BitSetVector.h	Fri Jun 27 13:31:59 2003
@@ -24,7 +24,6 @@
 #include <vector>
 #include <functional>
 #include <iostream>
-#include "Config/assert.h"
 
 class BitSetVector {
   enum { BITSET_WORDSIZE = sizeof(long)*8 };


Index: llvm/include/Support/Casting.h
diff -u llvm/include/Support/Casting.h:1.5.2.1 llvm/include/Support/Casting.h:1.5.2.2
--- llvm/include/Support/Casting.h:1.5.2.1	Mon Jun 23 13:50:38 2003
+++ llvm/include/Support/Casting.h	Fri Jun 27 13:31:59 2003
@@ -8,8 +8,6 @@
 #ifndef SUPPORT_CASTING_H
 #define SUPPORT_CASTING_H
 
-#include "Config/assert.h"
-
 //===----------------------------------------------------------------------===//
 //                          isa<x> Support Templates
 //===----------------------------------------------------------------------===//


Index: llvm/include/Support/CommandLine.h
diff -u llvm/include/Support/CommandLine.h:1.12.2.2 llvm/include/Support/CommandLine.h:1.12.2.3
--- llvm/include/Support/CommandLine.h:1.12.2.2	Thu Jun 26 16:34:32 2003
+++ llvm/include/Support/CommandLine.h	Fri Jun 27 13:31:59 2003
@@ -19,8 +19,6 @@
 #include <cstdarg>
 #include "boost/type_traits/object_traits.hpp"
 
-#include "Config/assert.h"
-
 /// cl Namespace - This namespace contains all of the command line option
 /// processing machinery.  It is intentionally a short name to make qualified
 /// usage concise.


Index: llvm/include/Support/TarjanSCCIterator.h
diff -u llvm/include/Support/TarjanSCCIterator.h:1.5.2.2 llvm/include/Support/TarjanSCCIterator.h:1.5.2.3
--- llvm/include/Support/TarjanSCCIterator.h:1.5.2.2	Thu Jun 26 16:34:33 2003
+++ llvm/include/Support/TarjanSCCIterator.h	Fri Jun 27 13:31:59 2003
@@ -21,7 +21,6 @@
 #include <vector>
 #include <stack>
 #include <map>
-#include "Config/assert.h"
 
 //--------------------------------------------------------------------------
 // class SCC : A simple representation of an SCC in a generic Graph.


Index: llvm/include/Support/Timer.h
diff -u llvm/include/Support/Timer.h:1.6.2.2 llvm/include/Support/Timer.h:1.6.2.3
--- llvm/include/Support/Timer.h:1.6.2.2	Thu Jun 26 16:34:33 2003
+++ llvm/include/Support/Timer.h	Fri Jun 27 13:31:59 2003
@@ -29,8 +29,6 @@
 #include <vector>
 #include <iosfwd>
 
-#include "Config/assert.h"
-
 class TimerGroup;
 
 class Timer {


Index: llvm/include/Support/Tree.h
diff -u llvm/include/Support/Tree.h:1.3.2.2 llvm/include/Support/Tree.h:1.3.2.3
--- llvm/include/Support/Tree.h:1.3.2.2	Thu Jun 26 16:34:33 2003
+++ llvm/include/Support/Tree.h	Fri Jun 27 13:31:59 2003
@@ -9,7 +9,6 @@
 #define SUPPORT_TREE_H
 
 #include <vector>
-#include "Config/assert.h"
 
 template<class ConcreteTreeNode, class Payload>
 class Tree {


Index: llvm/include/Support/ilist
diff -u llvm/include/Support/ilist:1.6.2.2 llvm/include/Support/ilist:1.6.2.3
--- llvm/include/Support/ilist:1.6.2.2	Thu Jun 26 16:34:33 2003
+++ llvm/include/Support/ilist	Fri Jun 27 13:31:59 2003
@@ -31,7 +31,6 @@
 #ifndef SUPPORT_ILIST
 #define SUPPORT_ILIST
 
-#include "Config/assert.h"
 #include <algorithm>
 #include <Support/iterator>
 





More information about the llvm-commits mailing list