aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineCombiner.cpp
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2015-06-10 17:08:12 +0000
committerSanjay Patel <spatel@rotateright.com>2015-06-10 17:08:12 +0000
commita32fadd14a299a2eecb174cc3f822376871e3319 (patch)
tree0d2fc2db96df57cb6646841c221d498fd29498e0 /llvm/lib/CodeGen/MachineCombiner.cpp
parent1e9d1d768c22b01e86094c7970964354bf208189 (diff)
downloadllvm-a32fadd14a299a2eecb174cc3f822376871e3319.zip
llvm-a32fadd14a299a2eecb174cc3f822376871e3319.tar.gz
llvm-a32fadd14a299a2eecb174cc3f822376871e3319.tar.bz2
fix typo in comment; NFC
llvm-svn: 239478
Diffstat (limited to 'llvm/lib/CodeGen/MachineCombiner.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineCombiner.cpp2
1 files changed, 1 insertions, 1 deletions
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));
}