diff options
author | Jim Grosbach <grosbach@apple.com> | 2013-04-15 17:40:48 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2013-04-15 17:40:48 +0000 |
commit | 0f38c1e3a7e1be6a00b1176334c47870dfcdc028 (patch) | |
tree | 3966255354724f4b6fdd11a5c29f3df9ad2dd5c6 /llvm/lib/Transforms | |
parent | 2783ca4fb721ed2392dea1688caea5e5c324d6b1 (diff) | |
download | bcm5719-llvm-0f38c1e3a7e1be6a00b1176334c47870dfcdc028.tar.gz bcm5719-llvm-0f38c1e3a7e1be6a00b1176334c47870dfcdc028.zip |
Fix a typo in comment.
llvm-svn: 179542
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp b/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp index 015fd2e6e6f..615c5174492 100644 --- a/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp +++ b/llvm/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); |