Extension of GEP in constant folder was broken (apparently this code

has never been run!).
 - Sorry, don't know how to make an LLVM test case for this.

llvm-svn: 65383
This commit is contained in:
Daniel Dunbar 2009-02-24 19:10:46 +00:00
parent 0bddac16a8
commit 5bf00893b6
1 changed files with 1 additions and 1 deletions

View File

@ -1664,7 +1664,7 @@ Constant *llvm::ConstantFoldGetElementPtr(const Constant *C,
Offset = ConstantExpr::getSExt(Offset, Base->getType());
else if (Base->getType()->getPrimitiveSizeInBits() <
Offset->getType()->getPrimitiveSizeInBits())
Base = ConstantExpr::getZExt(Base, Base->getType());
Base = ConstantExpr::getZExt(Base, Offset->getType());
Base = ConstantExpr::getAdd(Base, Offset);
return ConstantExpr::getIntToPtr(Base, CE->getType());