1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

Fix a typo in comment.

llvm-svn: 179542
This commit is contained in:
Jim Grosbach 2013-04-15 17:40:48 +00:00
parent 3c2cf9b6eb
commit 1b2d956f84

View File

@ -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);