summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/CodeGenPrepare.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2013-04-15 17:40:48 +0000
committerJim Grosbach <grosbach@apple.com>2013-04-15 17:40:48 +0000
commit467116a1c89528963a18306c9b03a0e1e611f2c4 (patch)
treeee429781dbb94255c228a4e49bc41109a48dca07 /lib/Transforms/Scalar/CodeGenPrepare.cpp
parent0437ef6510795353a405cd6e119a2175d65fe0d1 (diff)
downloadllvm-467116a1c89528963a18306c9b03a0e1e611f2c4.tar.gz
llvm-467116a1c89528963a18306c9b03a0e1e611f2c4.tar.bz2
llvm-467116a1c89528963a18306c9b03a0e1e611f2c4.tar.xz
Fix a typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179542 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/CodeGenPrepare.cpp')
-rw-r--r--lib/Transforms/Scalar/CodeGenPrepare.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp
index 015fd2e6e6..615c517449 100644
--- a/lib/Transforms/Scalar/CodeGenPrepare.cpp
+++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp
@@ -1761,7 +1761,7 @@ bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
if (!DefIsLiveOut)
return false;
- // Make sure non of the uses are PHI nodes.
+ // Make sure none of the uses are PHI nodes.
for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
UI != E; ++UI) {
Instruction *User = cast<Instruction>(*UI);