Index: runtime/vm/assembler_ia32.cc |
=================================================================== |
--- runtime/vm/assembler_ia32.cc (revision 26825) |
+++ runtime/vm/assembler_ia32.cc (working copy) |
@@ -2200,8 +2200,9 @@ |
} |
-void Assembler::CallRuntime(const RuntimeEntry& entry) { |
- entry.Call(this); |
+void Assembler::CallRuntime(const RuntimeEntry& entry, |
+ intptr_t argument_count) { |
+ entry.Call(this, argument_count); |
} |