diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-06-16 00:17:44 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-06-16 00:17:44 +0000 |
commit | b90df60b3b0f7c51baaa0558e4fc2f371164294e (patch) | |
tree | 7d71b5ba31bfd3ed340110780b5394b02df0d8b7 /clang/lib/Sema/SemaExpr.cpp | |
parent | 00bdca561aad6f418e7a13fce9163e8c985db0ad (diff) | |
download | bcm5719-llvm-b90df60b3b0f7c51baaa0558e4fc2f371164294e.tar.gz bcm5719-llvm-b90df60b3b0f7c51baaa0558e4fc2f371164294e.zip |
Introduce Type::isIntegralOrEnumerationType(), to cover those places
in C++ that involve both integral and enumeration types. Convert all
of the callers to Type::isIntegralType() that are meant to work with
both integral and enumeration types over to
Type::isIntegralOrEnumerationType(), to prepare to eliminate
enumeration types as integral types.
llvm-svn: 106071
Diffstat (limited to 'clang/lib/Sema/SemaExpr.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index bb5fa71e52b..347b597f288 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -3913,7 +3913,8 @@ bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, if (!castType->isArithmeticType()) { QualType castExprType = castExpr->getType(); - if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) + if (!castExprType->isIntegralType() && + castExprType->isArithmeticType()) return Diag(castExpr->getLocStart(), diag::err_cast_pointer_from_non_pointer_int) << castExprType << castExpr->getSourceRange(); |