diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2010-01-03 00:20:48 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2010-01-03 00:20:48 +0000 |
commit | 5b088a10e106a287684bef78cd6c3a3830ac0721 (patch) | |
tree | 1ecb6959008946914319588441509ccb79eb7f95 /lib | |
parent | 8ac5549e726f67c2d37647ecad6d543e71f82950 (diff) |
Fix minor oversight for increment/decrement of complex int. Add tests for
coverage.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Sema/SemaExpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 7bf04d88cd..feb6b2b666 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -5776,7 +5776,7 @@ QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, << PointeeTy << Op->getSourceRange(); return QualType(); } - } else if (ResType->isComplexType()) { + } else if (ResType->isAnyComplexType()) { // C99 does not support ++/-- on complex types, we allow as an extension. Diag(OpLoc, diag::ext_integer_increment_complex) << ResType << Op->getSourceRange(); |