Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Unified Diff: runtime/vm/compiler.cc

Issue 10990031: Fix error in r12771 disabling licm. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/compiler.cc
diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
index d28fc41e19bd80d2163495360fac1f407813be90..d462881fee0e42a6bd6c5c80b6260677ed23481b 100644
--- a/runtime/vm/compiler.cc
+++ b/runtime/vm/compiler.cc
@@ -214,8 +214,8 @@ static bool CompileParsedFunctionHelper(const ParsedFunction& parsed_function,
DominatorBasedCSE::Optimize(flow_graph);
}
if (FLAG_loop_invariant_code_motion &&
- (parsed_function.function().deoptimization_counter() ==
- FLAG_deoptimization_counter_threshold - 1)) {
+ (parsed_function.function().deoptimization_counter() <
+ (FLAG_deoptimization_counter_threshold - 1))) {
LICM::Optimize(flow_graph);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698