diff options
author | Junmo Park <junmoz.park@samsung.com> | 2016-02-27 01:10:43 +0000 |
---|---|---|
committer | Junmo Park <junmoz.park@samsung.com> | 2016-02-27 01:10:43 +0000 |
commit | 272a2bc36501831328d62ff2081830709bd74b8a (patch) | |
tree | 5e0b79d43a86d422222c1a45eef4caca10be77af /llvm/lib/CodeGen | |
parent | 892ae2e2b65004c22e3cfbfe4e1c44717f4214d0 (diff) | |
download | bcm5719-llvm-272a2bc36501831328d62ff2081830709bd74b8a.tar.gz bcm5719-llvm-272a2bc36501831328d62ff2081830709bd74b8a.zip |
Minor code cleanup. NFC.
llvm-svn: 262096
Diffstat (limited to 'llvm/lib/CodeGen')
-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 b5416f9b289..05972bebd19 100644 --- a/llvm/lib/CodeGen/MachineCombiner.cpp +++ b/llvm/lib/CodeGen/MachineCombiner.cpp @@ -281,7 +281,7 @@ bool MachineCombiner::improvesCriticalPathLen( unsigned NewCycleCount = NewRootDepth + NewRootLatency; unsigned OldCycleCount = RootDepth + RootLatency + RootSlack; - + return NewCycleCount <= OldCycleCount; } |