From 2a4a4b54ada1d998340a7e3364ac4d80fa783a82 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 2 Sep 2003 21:54:56 +0000 Subject: [PATCH] New method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8331 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Type.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/llvm/Type.h b/include/llvm/Type.h index e2ee9545bda..b72bcf97ba8 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;