From: Junmo Park Date: Sat, 27 Feb 2016 01:10:43 +0000 (+0000) Subject: Minor code cleanup. NFC. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=272a2bc36501831328d62ff2081830709bd74b8a;p=platform%2Fupstream%2Fllvm.git Minor code cleanup. NFC. llvm-svn: 262096 --- diff --git a/llvm/lib/CodeGen/MachineCombiner.cpp b/llvm/lib/CodeGen/MachineCombiner.cpp index b5416f9..05972be 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; }