aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-02 21:54:56 +0000
committerChris Lattner <sabre@nondot.org>2003-09-02 21:54:56 +0000
commit2a4a4b54ada1d998340a7e3364ac4d80fa783a82 (patch)
tree5a88d1e6ad62fc859416ed821e24c8239588eb9b /include
parent87ca5faed7f42c73e41ff9354529b137ad54f157 (diff)
downloadexternal_llvm-2a4a4b54ada1d998340a7e3364ac4d80fa783a82.zip
external_llvm-2a4a4b54ada1d998340a7e3364ac4d80fa783a82.tar.gz
external_llvm-2a4a4b54ada1d998340a7e3364ac4d80fa783a82.tar.bz2
New method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Type.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index e2ee954..b72bcf9 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;