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

Unified Diff: runtime/vm/stub_code_ia32.cc

Issue 10356051: First steps toward a two stages new compiler. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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
Index: runtime/vm/stub_code_ia32.cc
===================================================================
--- runtime/vm/stub_code_ia32.cc (revision 7399)
+++ runtime/vm/stub_code_ia32.cc (working copy)
@@ -1524,7 +1524,7 @@
__ cmpl(FieldAddress(EBX, Function::usage_counter_offset()),
Immediate(FLAG_optimization_counter_threshold));
Label not_yet_hot;
- __ j(LESS_EQUAL, &not_yet_hot);
+ __ j(LESS_EQUAL, &not_yet_hot, Assembler::kNearJump);
__ EnterFrame(0);
__ pushl(ECX); // Preserve inline cache data object.
__ pushl(EDX); // Preserve arguments array.

Powered by Google App Engine
This is Rietveld 408576698