From: Sanjay Patel Date: Wed, 10 Jun 2015 17:08:12 +0000 (+0000) Subject: fix typo in comment; NFC X-Git-Tag: llvmorg-3.7.0-rc1~2613 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a32fadd14a299a2eecb174cc3f822376871e3319;p=platform%2Fupstream%2Fllvm.git fix typo in comment; NFC llvm-svn: 239478 --- diff --git a/llvm/lib/CodeGen/MachineCombiner.cpp b/llvm/lib/CodeGen/MachineCombiner.cpp index a4bc77e..43ce0fb 100644 --- a/llvm/lib/CodeGen/MachineCombiner.cpp +++ b/llvm/lib/CodeGen/MachineCombiner.cpp @@ -245,7 +245,7 @@ bool MachineCombiner::preservesCriticalPathLen( dbgs() << " RootDepth + RootLatency + RootSlack " << RootDepth + RootLatency + RootSlack << "\n";); - /// True when the new sequence does not lenghten the critical path. + /// True when the new sequence does not lengthen the critical path. return ((NewRootDepth + NewRootLatency) <= (RootDepth + RootLatency + RootSlack)); }