From: Jim Grosbach Date: Mon, 15 Apr 2013 17:40:48 +0000 (+0000) Subject: Fix a typo in comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=467116a1c89528963a18306c9b03a0e1e611f2c4;p=oota-llvm.git Fix a typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179542 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp index 015fd2e6e6f..615c5174492 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(*UI);