[llvm] r262096 - Minor code cleanup. NFC.
Junmo Park via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 26 17:10:43 PST 2016
Author: flyingforyou
Date: Fri Feb 26 19:10:43 2016
New Revision: 262096
URL: http://llvm.org/viewvc/llvm-project?rev=262096&view=rev
Log:
Minor code cleanup. NFC.
Modified:
llvm/trunk/lib/CodeGen/MachineCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/MachineCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineCombiner.cpp?rev=262096&r1=262095&r2=262096&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineCombiner.cpp Fri Feb 26 19:10:43 2016
@@ -281,7 +281,7 @@ bool MachineCombiner::improvesCriticalPa
unsigned NewCycleCount = NewRootDepth + NewRootLatency;
unsigned OldCycleCount = RootDepth + RootLatency + RootSlack;
-
+
return NewCycleCount <= OldCycleCount;
}
More information about the llvm-commits
mailing list