diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-16 23:13:47 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-06-16 23:13:47 +0000 |
commit | 912c3f5cbc512557794a3dfd7bc5cb4994413dfe (patch) | |
tree | 19dcc58243384db48c5c6c45555b818275ffcae2 /js/src/vm/Interpreter.cpp | |
parent | ed98fe0e7269d9bab3b9a65993068579f0bc1520 (diff) | |
download | UXP-912c3f5cbc512557794a3dfd7bc5cb4994413dfe.tar UXP-912c3f5cbc512557794a3dfd7bc5cb4994413dfe.tar.gz UXP-912c3f5cbc512557794a3dfd7bc5cb4994413dfe.tar.lz UXP-912c3f5cbc512557794a3dfd7bc5cb4994413dfe.tar.xz UXP-912c3f5cbc512557794a3dfd7bc5cb4994413dfe.zip |
Remove JSOP_SPREADCALLARRAY and just use JSOP_NEWARRAY again.
Diffstat (limited to 'js/src/vm/Interpreter.cpp')
-rw-r--r-- | js/src/vm/Interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/vm/Interpreter.cpp b/js/src/vm/Interpreter.cpp index f4f6c0da4..74a1ef3e9 100644 --- a/js/src/vm/Interpreter.cpp +++ b/js/src/vm/Interpreter.cpp @@ -1916,6 +1916,7 @@ CASE(EnableInterruptsPseudoOpcode) /* Various 1-byte no-ops. */ CASE(JSOP_NOP) CASE(JSOP_NOP_DESTRUCTURING) +CASE(JSOP_UNUSED126) CASE(JSOP_UNUSED192) CASE(JSOP_UNUSED209) CASE(JSOP_UNUSED210) @@ -3636,7 +3637,6 @@ CASE(JSOP_NEWINIT) END_CASE(JSOP_NEWINIT) CASE(JSOP_NEWARRAY) -CASE(JSOP_SPREADCALLARRAY) { uint32_t length = GET_UINT32(REGS.pc); JSObject* obj = NewArrayOperation(cx, script, REGS.pc, length); |