| Index: src/interpreter/bytecode-array-builder.h
|
| diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h
|
| index b0ca11709cafbd27d96e56a140c5fa6441b8d4b9..404b3aeea5faea5e48e3da97ecbb97e66d434e63 100644
|
| --- a/src/interpreter/bytecode-array-builder.h
|
| +++ b/src/interpreter/bytecode-array-builder.h
|
| @@ -233,13 +233,10 @@ class BytecodeArrayBuilder final : public ZoneObject {
|
| BytecodeArrayBuilder& CompareOperation(Token::Value op, Register reg,
|
| int feedback_slot = kNoFeedbackSlot);
|
|
|
| - // Casts accumulator and stores result in accumulator.
|
| - BytecodeArrayBuilder& CastAccumulatorToBoolean();
|
| -
|
| - // Casts accumulator and stores result in register |out|.
|
| - BytecodeArrayBuilder& CastAccumulatorToJSObject(Register out);
|
| - BytecodeArrayBuilder& CastAccumulatorToName(Register out);
|
| - BytecodeArrayBuilder& CastAccumulatorToNumber(Register out);
|
| + // Converts accumulator and stores result in register |out|.
|
| + BytecodeArrayBuilder& ConvertAccumulatorToObject(Register out);
|
| + BytecodeArrayBuilder& ConvertAccumulatorToName(Register out);
|
| + BytecodeArrayBuilder& ConvertAccumulatorToNumber(Register out);
|
|
|
| // Flow Control.
|
| BytecodeArrayBuilder& Bind(BytecodeLabel* label);
|
|
|