| Index: runtime/vm/stub_code_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/stub_code_ia32.cc (revision 37923)
|
| +++ runtime/vm/stub_code_ia32.cc (working copy)
|
| @@ -404,10 +404,11 @@
|
| static void PushArgumentsArray(Assembler* assembler) {
|
| const Immediate& raw_null =
|
| Immediate(reinterpret_cast<intptr_t>(Object::null()));
|
| + StubCode* stub_code = Isolate::Current()->stub_code();
|
|
|
| // Allocate array to store arguments of caller.
|
| __ movl(ECX, raw_null); // Null element type for raw Array.
|
| - __ call(&StubCode::AllocateArrayLabel());
|
| + __ call(&stub_code->AllocateArrayLabel());
|
| __ SmiUntag(EDX);
|
| // EAX: newly allocated array.
|
| // EDX: length of the array (was preserved by the stub).
|
|
|