| Index: runtime/vm/intermediate_language_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_ia32.cc (revision 8249)
|
| +++ runtime/vm/intermediate_language_ia32.cc (working copy)
|
| @@ -234,13 +234,13 @@
|
| cid(),
|
| token_index(),
|
| try_index());
|
| - compiler->EmitInstanceCall(cid(),
|
| - token_index(),
|
| - try_index(),
|
| - function_name(),
|
| - ArgumentCount(),
|
| - argument_names(),
|
| - checked_argument_count());
|
| + compiler->GenerateInstanceCall(cid(),
|
| + token_index(),
|
| + try_index(),
|
| + function_name(),
|
| + ArgumentCount(),
|
| + argument_names(),
|
| + checked_argument_count());
|
| }
|
|
|
|
|
| @@ -251,11 +251,12 @@
|
|
|
| void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| ASSERT(VerifyCallComputation(this));
|
| - compiler->EmitStaticCall(token_index(),
|
| - try_index(),
|
| - function(),
|
| - ArgumentCount(),
|
| - argument_names());
|
| + compiler->GenerateStaticCall(cid(),
|
| + token_index(),
|
| + try_index(),
|
| + function(),
|
| + ArgumentCount(),
|
| + argument_names());
|
| }
|
|
|
|
|
|
|