diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-12-13 07:50:36 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-12-13 07:50:36 +0000 |
commit | 696e5c047bd06bf6b7b5471b3f4dec319b43628b (patch) | |
tree | abffd6d2b57c00c2574f06bb85b40c2f6dbe7a41 | |
parent | 62d67dd3a3384d3899ca32aebd3d19bbf8b7d326 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44997 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp index 8da09127e9..7c7352d122 100644 --- a/lib/Transforms/Scalar/CodeGenPrepare.cpp +++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp @@ -929,7 +929,7 @@ bool CodeGenPrepare::OptimizeExtUses(Instruction *I) { if (Src->hasOneUse()) 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())) return false; |