ConstantFoldConstantExpression can theoretically return the original

expression; don't go into an infinite loop if it does.

llvm-svn: 95591
This commit is contained in:
Dan Gohman 2010-02-08 22:19:11 +00:00
parent 73fd7e3bee
commit e51b57bee0
1 changed files with 4 additions and 2 deletions

View File

@ -892,8 +892,10 @@ static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
// If the code isn't optimized, there may be outstanding folding
// opportunities. Attempt to fold the expression using TargetData as a
// last resort before giving up.
if (Constant *C = ConstantFoldConstantExpression(CE, AP.TM.getTargetData()))
return LowerConstant(C, AP);
if (Constant *C =
ConstantFoldConstantExpression(CE, AP.TM.getTargetData()))
if (C != CE)
return LowerConstant(C, AP);
#ifndef NDEBUG
CE->dump();
#endif