Bug 471513 - invalid C++ in jsopcode.cpp, r=brendan

This commit is contained in:
Brian Crowder 2009-01-06 09:18:36 -08:00
parent 98fb58ed3e
commit 2ba5c16c75

View File

@ -932,8 +932,9 @@ GetStr(SprintStack *ss, uintN i)
* JSOP_SETPROP, and JSOP_SETELEM, respectively. They are never stored in
* bytecode, so they don't preempt valid opcodes.
*/
#define JSOP_GETPROP2 256
#define JSOP_GETELEM2 257
#define JSOP_GETPROP2 JSOP_LIMIT
#define JSOP_GETELEM2 JSOP_LIMIT + 1
JS_STATIC_ASSERT(JSOP_GETELEM2 <= 255);
static void
AddParenSlop(SprintStack *ss)