diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-06 16:34:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-06 16:34:23 +0000 |
commit | df00115aa4ee3fd400cc32889a353a461a471daa (patch) | |
tree | a549a334cce3017ca9669d2676220a56ed5560c7 | |
parent | 7c348e1c9f0b905a189e0c6ad870fff5ef296ad0 (diff) |
Rename method, change comment, add argument
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16771 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Type.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h index c2cae13454..06666cf7aa 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -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; } |