From: Sanjay Patel Date: Wed, 10 Jun 2015 17:08:12 +0000 (+0000) Subject: fix typo in comment; NFC X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=708de57fee131ab34a5def889bca7783ab7fd42b;p=oota-llvm.git fix typo in comment; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239478 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineCombiner.cpp b/lib/CodeGen/MachineCombiner.cpp index a4bc77edb75..43ce0fbc597 100644 --- a/lib/CodeGen/MachineCombiner.cpp +++ b/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)); }