diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-06-10 17:08:12 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-06-10 17:08:12 +0000 |
commit | a32fadd14a299a2eecb174cc3f822376871e3319 (patch) | |
tree | 0d2fc2db96df57cb6646841c221d498fd29498e0 /llvm/lib/CodeGen/MachineCombiner.cpp | |
parent | 1e9d1d768c22b01e86094c7970964354bf208189 (diff) | |
download | llvm-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.cpp | 2 |
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)); } |