projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e9d1d7
)
fix typo in comment; NFC
author
Sanjay Patel
<spatel@rotateright.com>
Wed, 10 Jun 2015 17:08:12 +0000
(17:08 +0000)
committer
Sanjay Patel
<spatel@rotateright.com>
Wed, 10 Jun 2015 17:08:12 +0000
(17:08 +0000)
llvm-svn: 239478
llvm/lib/CodeGen/MachineCombiner.cpp
patch
|
blob
|
history
diff --git
a/llvm/lib/CodeGen/MachineCombiner.cpp
b/llvm/lib/CodeGen/MachineCombiner.cpp
index a4bc77edb753a63472b834a300f7601e9174ce6f..43ce0fbc5974d42a9f7e65975caa4af204457553 100644
(file)
--- 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 leng
ht
en the critical path.
+ /// True when the new sequence does not leng
th
en the critical path.
return ((NewRootDepth + NewRootLatency) <=
(RootDepth + RootLatency + RootSlack));
}