Index: src/ia32/assembler-ia32.cc |
=================================================================== |
--- src/ia32/assembler-ia32.cc (revision 7663) |
+++ src/ia32/assembler-ia32.cc (working copy) |
@@ -1589,15 +1589,13 @@ |
} |
-void Assembler::call(Handle<Code> code, |
- RelocInfo::Mode rmode, |
- unsigned ast_id) { |
+void Assembler::call(Handle<Code> code, RelocInfo::Mode rmode) { |
positions_recorder()->WriteRecordedPositions(); |
EnsureSpace ensure_space(this); |
last_pc_ = pc_; |
ASSERT(RelocInfo::IsCodeTarget(rmode)); |
EMIT(0xE8); |
- emit(reinterpret_cast<intptr_t>(code.location()), rmode, ast_id); |
+ emit(reinterpret_cast<intptr_t>(code.location()), rmode); |
} |