Index: src/interpreter/bytecodes.h |
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h |
index 068feec1bb70c957302a407a62dd8a492b4aef03..0f22de9f6ce0566e5a74c98632a315f5f7fbe879 100644 |
--- a/src/interpreter/bytecodes.h |
+++ b/src/interpreter/bytecodes.h |
@@ -141,6 +141,7 @@ namespace interpreter { |
V(TypeOf, AccumulatorUse::kReadWrite) \ |
V(DeletePropertyStrict, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
V(DeletePropertySloppy, AccumulatorUse::kReadWrite, OperandType::kReg) \ |
+ V(GetSuperConstructor, AccumulatorUse::kReadWrite) \ |
rmcilroy
2016/11/23 21:55:37
This isn't really a unary op (in the sense of JS u
|
\ |
/* Call operations */ \ |
V(Call, AccumulatorUse::kWrite, OperandType::kReg, OperandType::kRegList, \ |