aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/Type.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-06 22:04:54 +0000
committerChris Lattner <sabre@nondot.org>2008-04-06 22:04:54 +0000
commit2daa5df1b53f7ef745d724771384409f6f5df5c1 (patch)
treee8511f76731e7179d1aa6f74d092ee8bf73448b6 /lib/AST/Type.cpp
parent5edb8bfe8472e7d7bf6a82386394ef27359eb846 (diff)
Make EnumType/RecordType classof predicates simpler and more efficient in
some cases. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49287 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Type.cpp')
-rw-r--r--lib/AST/Type.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp
index c06b1d9914..c8fb386804 100644
--- a/lib/AST/Type.cpp
+++ b/lib/AST/Type.cpp
@@ -739,16 +739,12 @@ QualType TypedefType::LookThroughTypedefs() const {
}
}
-bool RecordType::classof(const Type *T) {
- if (const TagType *TT = dyn_cast<TagType>(T))
- return isa<RecordDecl>(TT->getDecl());
- return false;
+bool RecordType::classof(const TagType *TT) {
+ return isa<RecordDecl>(TT->getDecl());
}
-bool EnumType::classof(const Type *T) {
- if (const TagType *TT = dyn_cast<TagType>(T))
- return isa<EnumDecl>(TT->getDecl());
- return false;
+bool EnumType::classof(const TagType *TT) {
+ return isa<EnumDecl>(TT->getDecl());
}