| Index: src/x64/assembler-x64.cc
|
| ===================================================================
|
| --- src/x64/assembler-x64.cc (revision 7663)
|
| +++ src/x64/assembler-x64.cc (working copy)
|
| @@ -869,14 +869,12 @@
|
| }
|
|
|
|
|
| -void Assembler::call(Handle<Code> target,
|
| - RelocInfo::Mode rmode,
|
| - unsigned ast_id) {
|
| +void Assembler::call(Handle<Code> target, RelocInfo::Mode rmode) {
|
| positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // 1110 1000 #32-bit disp.
|
| emit(0xE8);
|
| - emit_code_target(target, rmode, ast_id);
|
| + emit_code_target(target, rmode);
|
| }
|
|
|
|
|
|
|