Fix a nasty bug, noticed by Reid

llvm-svn: 14249
This commit is contained in:
Chris Lattner 2004-06-19 18:15:50 +00:00
parent ec2d34cc19
commit 4027500e1c
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ namespace {
}
Value *visitZeroExtendExpr(SCEVZeroExtendExpr *S) {
Value *V = expandInTy(S->getOperand(),V->getType()->getUnsignedVersion());
Value *V = expandInTy(S->getOperand(),S->getType()->getUnsignedVersion());
return new CastInst(V, S->getType(), "tmp.", InsertPt);
}