[llvm-commits] CVS: llvm/include/llvm/DerivedTypes.h

LLVM llvm at cs.uiuc.edu
Tue May 25 07:22:19 PDT 2004


Changes in directory llvm/include/llvm:

DerivedTypes.h updated: 1.56 -> 1.57

---
Log message:

Convert dump() method to call Type::dump() instead of Value::dump().

---
Diffs of the changes:  (+1 -1)

Index: llvm/include/llvm/DerivedTypes.h
diff -u llvm/include/llvm/DerivedTypes.h:1.56 llvm/include/llvm/DerivedTypes.h:1.57
--- llvm/include/llvm/DerivedTypes.h:1.56	Sun Apr  4 20:25:21 2004
+++ llvm/include/llvm/DerivedTypes.h	Tue May 25 03:45:42 2004
@@ -88,7 +88,7 @@
   ///
   void refineAbstractTypeTo(const Type *NewType);
 
-  void dump() const { Value::dump(); }
+  void dump() const { Type::dump(); }
 
   // Methods for support type inquiry through isa, cast, and dyn_cast:
   static inline bool classof(const DerivedType *T) { return true; }





More information about the llvm-commits mailing list