| Index: runtime/vm/runtime_entry_ia32.cc
|
| diff --git a/runtime/vm/runtime_entry_ia32.cc b/runtime/vm/runtime_entry_ia32.cc
|
| index 160bf3c085db2e03bdc6984ffef9578bd8b404eb..ecd239371b509c3cfe32b718dff4bcd655e4377c 100644
|
| --- a/runtime/vm/runtime_entry_ia32.cc
|
| +++ b/runtime/vm/runtime_entry_ia32.cc
|
| @@ -32,7 +32,7 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
|
| // Argument count is not checked here, but in the runtime entry for a more
|
| // informative error message.
|
| __ movl(ECX, Immediate(GetEntryPoint()));
|
| - __ movl(EDX, Immediate(Smi::RawValue(argument_count)));
|
| + __ movl(EDX, Immediate(argument_count));
|
| __ call(&StubCode::CallToRuntimeLabel());
|
| }
|
| }
|
|
|