[llvm-commits] CVS: llvm/include/llvm/Type.h 
    Chris Lattner 
    lattner at cs.uiuc.edu
       
    Wed Oct  6 09:34:36 PDT 2004
    
    
  
Changes in directory llvm/include/llvm:
Type.h updated: 1.59 -> 1.60
---
Log message:
Rename method, change comment, add argument
---
Diffs of the changes:  (+3 -3)
Index: llvm/include/llvm/Type.h
diff -u llvm/include/llvm/Type.h:1.59 llvm/include/llvm/Type.h:1.60
--- llvm/include/llvm/Type.h:1.59	Mon Sep 27 20:59:17 2004
+++ llvm/include/llvm/Type.h	Wed Oct  6 11:34:23 2004
@@ -101,9 +101,9 @@
   ///
   inline void setAbstract(bool Val) { Abstract = Val; }
 
-  /// isTypeAbstract - This method is used to calculate the Abstract bit.
-  ///
-  bool isTypeAbstract();
+  // PromoteAbstractToConcrete - This is an internal method used to calculate
+  // change "Abstract" from true to false when types are refined.
+  bool PromoteAbstractToConcrete(void *);
 
   unsigned getRefCount() const { return RefCount; }
 
    
    
More information about the llvm-commits
mailing list