Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 75c38af16608b148e5e568c27493d2d9d3aeb4e2..43aeb30d3bb500ce3ed5dff2ad033aeb568fb0bb 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -514,14 +514,14 @@ |
// 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); |