| Index: src/compiler/code-generator.h
|
| diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h
|
| index e20a8be774213c6a0f49374780dae47399fe2f92..34d5fb38782f3c25a130fc3bc4dc04c43d811d06 100644
|
| --- a/src/compiler/code-generator.h
|
| +++ b/src/compiler/code-generator.h
|
| @@ -53,9 +53,7 @@ class InstructionOperandIterator {
|
| class CodeGenerator final : public GapResolver::Assembler {
|
| public:
|
| explicit CodeGenerator(Frame* frame, Linkage* linkage,
|
| - InstructionSequence* code, CompilationInfo* info,
|
| - ZoneVector<trap_handler::ProtectedInstructionData>*
|
| - protected_instructions = nullptr);
|
| + InstructionSequence* code, CompilationInfo* info);
|
|
|
| // Generate native code.
|
| Handle<Code> GenerateCode();
|
| @@ -68,8 +66,6 @@ class CodeGenerator final : public GapResolver::Assembler {
|
|
|
| Label* GetLabel(RpoNumber rpo) { return &labels_[rpo.ToSize()]; }
|
|
|
| - void AddProtectedInstruction(int instr_offset, int landing_offset);
|
| -
|
| void AssembleSourcePosition(Instruction* instr);
|
|
|
| void AssembleSourcePosition(SourcePosition source_position);
|
| @@ -291,7 +287,6 @@ class CodeGenerator final : public GapResolver::Assembler {
|
| int osr_pc_offset_;
|
| int optimized_out_literal_id_;
|
| SourcePositionTableBuilder source_position_table_builder_;
|
| - ZoneVector<trap_handler::ProtectedInstructionData>* protected_instructions_;
|
| };
|
|
|
| } // namespace compiler
|
|
|