diff options
| author | Anders Carlsson <andersca@mac.com> | 2008-12-10 23:30:05 +0000 |
|---|---|---|
| committer | Anders Carlsson <andersca@mac.com> | 2008-12-10 23:30:05 +0000 |
| commit | b05961c700422ae4024d933fb2bd5cd30e816396 (patch) | |
| tree | 3dd87c05ddb17c97d2f109c166c79214b341be08 /clang/lib | |
| parent | d8681df4e7cb2a9faae353ce725854fc28e9a782 (diff) | |
| download | bcm5719-llvm-b05961c700422ae4024d933fb2bd5cd30e816396.tar.gz bcm5719-llvm-b05961c700422ae4024d933fb2bd5cd30e816396.zip | |
Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point)
llvm-svn: 60862
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/Sema/SemaExpr.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 3870f0736ec..b2542542417 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -189,14 +189,22 @@ QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { // Now handle "real" floating types (i.e. float, double, long double). if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { // if we have an integer operand, the result is the real floating type. - if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { + if (rhs->isIntegerType()) { // convert rhs to the lhs floating point type. return lhs; } - if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { + if (rhs->isComplexIntegerType()) { + // convert rhs to the complex floating point type. + return Context.getComplexType(lhs); + } + if (lhs->isIntegerType()) { // convert lhs to the rhs floating point type. return rhs; } + if (lhs->isComplexIntegerType()) { + // convert lhs to the complex floating point type. + return Context.getComplexType(rhs); + } // We have two real floating types, float/complex combos were handled above. // Convert the smaller operand to the bigger result. int result = Context.getFloatingTypeOrder(lhs, rhs); |

