diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-02 21:54:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-02 21:54:56 +0000 |
commit | 2a4a4b54ada1d998340a7e3364ac4d80fa783a82 (patch) | |
tree | 5a88d1e6ad62fc859416ed821e24c8239588eb9b /include/llvm/Type.h | |
parent | 87ca5faed7f42c73e41ff9354529b137ad54f157 (diff) |
New method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Type.h')
-rw-r--r-- | include/llvm/Type.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h index e2ee9545bd..b72bcf97ba 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -88,6 +88,9 @@ protected: /// inline void setAbstract(bool Val) { Abstract = Val; } + /// isTypeAbstract - This method is used to calculate the Abstract bit. + /// + bool isTypeAbstract(); public: virtual void print(std::ostream &O) const; |