Index: src/x64/assembler-x64-inl.h |
diff --git a/src/x64/assembler-x64-inl.h b/src/x64/assembler-x64-inl.h |
index f533eb46a8b45849ac6207fadf0f98781fc9fb67..57aab25faacb93710f7fdf63777159944605d256 100644 |
--- a/src/x64/assembler-x64-inl.h |
+++ b/src/x64/assembler-x64-inl.h |
@@ -53,17 +53,10 @@ void Assembler::emitw(uint16_t x) { |
pc_ += sizeof(uint16_t); |
} |
- |
-void Assembler::emit_code_target(Handle<Code> target, |
- RelocInfo::Mode rmode, |
- TypeFeedbackId ast_id) { |
+void Assembler::emit_code_target(Handle<Code> target, RelocInfo::Mode rmode) { |
DCHECK(RelocInfo::IsCodeTarget(rmode) || |
rmode == RelocInfo::CODE_AGE_SEQUENCE); |
- if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { |
- RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID, ast_id.ToInt()); |
- } else { |
- RecordRelocInfo(rmode); |
- } |
+ RecordRelocInfo(rmode); |
int current = code_targets_.length(); |
if (current > 0 && code_targets_.last().address() == target.address()) { |
// Optimization if we keep jumping to the same code target. |