Index: src/arm/assembler-arm.h |
diff --git a/src/arm/assembler-arm.h b/src/arm/assembler-arm.h |
index f25619e2b6d54a4295a78213e743e562f5486644..e8011f4cfe3640fc51a88a179de36556ba410998 100644 |
--- a/src/arm/assembler-arm.h |
+++ b/src/arm/assembler-arm.h |
@@ -1555,20 +1555,6 @@ class Assembler : public AssemblerBase { |
// Mark address of a debug break slot. |
void RecordDebugBreakSlot(RelocInfo::Mode mode); |
- // Record the AST id of the CallIC being compiled, so that it can be placed |
- // in the relocation information. |
- void SetRecordedAstId(TypeFeedbackId ast_id) { |
- DCHECK(recorded_ast_id_.IsNone()); |
- recorded_ast_id_ = ast_id; |
- } |
- |
- TypeFeedbackId RecordedAstId() { |
- DCHECK(!recorded_ast_id_.IsNone()); |
- return recorded_ast_id_; |
- } |
- |
- void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); } |
- |
// Record a comment relocation entry that can be used by a disassembler. |
// Use --code-comments to enable. |
void RecordComment(const char* msg); |
@@ -1703,11 +1689,6 @@ class Assembler : public AssemblerBase { |
} |
protected: |
- // Relocation for a type-recording IC has the AST id added to it. This |
- // member variable is a way to pass the information from the call site to |
- // the relocation info. |
- TypeFeedbackId recorded_ast_id_; |
- |
int buffer_space() const { return reloc_info_writer.pos() - pc_; } |
// Decode branch instruction at pos and return branch target pos |