diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-10-30 13:47:07 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-10-30 13:47:07 +0000 |
commit | a7fbf7282eadebaf1293d9f970b01fb57f4b0ae4 (patch) | |
tree | 141ad95306733488cddad05853f84db08d49edce /lib/AST/Type.cpp | |
parent | ced80a848de94ef44b6e7b4ce6f182249b3141a8 (diff) |
Fix arithmetic type check
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Type.cpp')
-rw-r--r-- | lib/AST/Type.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 87b91ae2ea..3898ba056b 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -587,7 +587,8 @@ bool Type::isRealType() const { bool Type::isArithmeticType() const { if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) - return BT->getKind() != BuiltinType::Void; + return BT->getKind() >= BuiltinType::Bool && + BT->getKind() <= BuiltinType::LongDouble; if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) // GCC allows forward declaration of enum types (forbid by C99 6.7.2.3p2). // If a body isn't seen by the time we get here, return false. |