Rename method, change comment, add argument
authorChris Lattner <sabre@nondot.org>
Wed, 6 Oct 2004 16:34:23 +0000 (16:34 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 6 Oct 2004 16:34:23 +0000 (16:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16771 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Type.h

index c2cae13454c2b90d1c6430d62438bd37f8e7499d..06666cf7aa9add15f173c9c2a664fa2927913981 100644 (file)
@@ -101,9 +101,9 @@ protected:
   ///
   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; }