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

Unified Diff: runtime/vm/flow_graph_compiler_x64.cc

Issue 10451109: Port CopyParameters() to new ia32 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
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_x64.cc
===================================================================
--- runtime/vm/flow_graph_compiler_x64.cc (revision 8195)
+++ runtime/vm/flow_graph_compiler_x64.cc (working copy)
@@ -1236,7 +1236,7 @@
__ Bind(&wrong_num_arguments);
if (StackSize() != 0) {
- // We need to unwind the space we reserved for locals and copied parmeters.
+ // We need to unwind the space we reserved for locals and copied parameters.
// The NoSuchMethodFunction stub does not expect to see that area on the
// stack.
__ addq(RSP, Immediate(StackSize() * kWordSize));
@@ -1250,7 +1250,7 @@
// Invoke noSuchMethod function.
const int kNumArgsChecked = 1;
ICData& ic_data = ICData::ZoneHandle();
- ic_data = ICData::New(parsed_function_.function(),
+ ic_data = ICData::New(function,
String::Handle(function.name()),
AstNode::kNoId,
kNumArgsChecked);
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698