Index: src/interpreter/interpreter-assembler.h |
diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h |
index 3f44f1298021228bc027a262b7fc5b2dc0593fc7..d008e664cf3421300b26c2f520732774d3e382d1 100644 |
--- a/src/interpreter/interpreter-assembler.h |
+++ b/src/interpreter/interpreter-assembler.h |
@@ -143,6 +143,8 @@ class InterpreterAssembler : public CodeStubAssembler { |
// Abort with the given bailout reason. |
void Abort(BailoutReason bailout_reason); |
+ void AbortIfWordNotEqual(compiler::Node* lhs, compiler::Node* rhs, |
+ BailoutReason bailout_reason); |
protected: |
Bytecode bytecode() const { return bytecode_; } |
@@ -223,10 +225,6 @@ class InterpreterAssembler : public CodeStubAssembler { |
compiler::Node* DispatchToBytecodeHandlerEntry( |
compiler::Node* handler_entry, compiler::Node* bytecode_offset); |
- // Abort operations for debug code. |
- void AbortIfWordNotEqual(compiler::Node* lhs, compiler::Node* rhs, |
- BailoutReason bailout_reason); |
- |
OperandScale operand_scale() const { return operand_scale_; } |
Bytecode bytecode_; |