Fix typo.

llvm-svn: 44997
This commit is contained in:
Evan Cheng 2007-12-13 07:50:36 +00:00
parent eb13c73c36
commit 2011df4e39
1 changed files with 1 additions and 1 deletions

View File

@ -929,7 +929,7 @@ bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
if (Src->hasOneUse()) if (Src->hasOneUse())
return false; return false;
// Only do this xform is truncating is free. // Only do this xform if truncating is free.
if (!TLI->isTruncateFree(I->getType(), Src->getType())) if (!TLI->isTruncateFree(I->getType(), Src->getType()))
return false; return false;