From 272a2bc36501831328d62ff2081830709bd74b8a Mon Sep 17 00:00:00 2001 From: Junmo Park Date: Sat, 27 Feb 2016 01:10:43 +0000 Subject: [PATCH] Minor code cleanup. NFC. llvm-svn: 262096 --- llvm/lib/CodeGen/MachineCombiner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.7.4