| Index: src/interpreter/bytecodes.h
|
| diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
|
| index 36041cb97e5bc59b27a5be846787275ef2844395..31380d01a20f3763e54b63956b93219acc3e0adb 100644
|
| --- a/src/interpreter/bytecodes.h
|
| +++ b/src/interpreter/bytecodes.h
|
| @@ -604,15 +604,15 @@ class Bytecodes {
|
| // Returns true if the bytecode is Ldar or Star.
|
| static bool IsLdarOrStar(Bytecode bytecode);
|
|
|
| - // Returns true if the bytecode is LdaSmi or LdaZero.
|
| - static bool IsLdaSmiOrLdaZero(Bytecode bytecode);
|
| -
|
| // Returns true if the bytecode has wider operand forms.
|
| static bool IsBytecodeWithScalableOperands(Bytecode bytecode);
|
|
|
| // Returns true if the bytecode is a scaling prefix bytecode.
|
| static bool IsPrefixScalingBytecode(Bytecode bytecode);
|
|
|
| + // Returns true if |bytecode| puts a name in the accumulator.
|
| + static bool PutsNameInAccumulator(Bytecode bytecode);
|
| +
|
| // Returns true if |operand_type| is any type of register operand.
|
| static bool IsRegisterOperandType(OperandType operand_type);
|
|
|
|
|