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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.cc

Issue 10829222: Fix a stack state error in checked mode. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_ia32.cc
===================================================================
--- runtime/vm/flow_graph_compiler_ia32.cc (revision 10341)
+++ runtime/vm/flow_graph_compiler_ia32.cc (working copy)
@@ -617,6 +617,8 @@
__ int3();
__ Bind(&is_assignable); // For a null object.
+ __ popl(EDX); // Remove pushed instantiator type arguments.
+ __ popl(ECX); // Remove pushed instantiator.
return;
}
@@ -646,7 +648,7 @@
__ popl(EAX);
__ Bind(&is_assignable);
- __ popl(EDX); // Remove pushed instantiator type arguments..
+ __ popl(EDX); // Remove pushed instantiator type arguments.
__ popl(ECX); // Remove pushed instantiator.
}
« no previous file with comments | « no previous file | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698