diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-13 22:12:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-13 22:12:09 +0000 |
commit | a2f9bd53398f38f2dd00828be139cc7bae552749 (patch) | |
tree | 5bdb9bea37e81b0819273070a708d092c2794891 | |
parent | c10e88db2215386ec221b41403b168885916b52a (diff) | |
download | bcm5719-llvm-a2f9bd53398f38f2dd00828be139cc7bae552749.tar.gz bcm5719-llvm-a2f9bd53398f38f2dd00828be139cc7bae552749.zip |
fix test/CodeGen/statements.c on 32-bit hosts.
llvm-svn: 84039
-rw-r--r-- | clang/lib/AST/Expr.cpp | 7 | ||||
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 13 |
2 files changed, 19 insertions, 1 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index 8516d41df6c..0e4a29f916f 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -1281,6 +1281,13 @@ bool Expr::isConstantInitializer(ASTContext &Ctx) const { // cast-to-union extension. if (getType()->isRecordType()) return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx); + + // Integer->integer casts can be handled here, which is important for + // things like (int)(&&x-&&y). Scary but true. + if (getType()->isIntegerType() && + cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType()) + return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx); + break; } return isEvaluatable(Ctx); diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index 119b6f31e4a..7f540c3c068 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -548,7 +548,18 @@ public: // Explicit and implicit no-op casts QualType Ty = E->getType(), SubTy = E->getSubExpr()->getType(); if (CGM.getContext().hasSameUnqualifiedType(Ty, SubTy)) - return Visit(E->getSubExpr()); + return Visit(E->getSubExpr()); + + // Handle integer->integer casts for address-of-label differences. + if (Ty->isIntegerType() && SubTy->isIntegerType() && + CGF) { + llvm::Value *Src = Visit(E->getSubExpr()); + if (Src == 0) return 0; + + // Use EmitScalarConversion to perform the conversion. + return cast<llvm::Constant>(CGF->EmitScalarConversion(Src, SubTy, Ty)); + } + return 0; } } |