Fix 433672, r=igor, a=shaver.

This commit is contained in:
Brendan Eich 2008-06-24 17:28:22 -07:00
parent fde4025474
commit f9264deae0

View File

@ -3830,10 +3830,10 @@ js_Interpret(JSContext *cx)
#define BINARY_OP(OP) \
JS_BEGIN_MACRO \
FETCH_NUMBER(cx, -1, d2); \
FETCH_NUMBER(cx, -2, d); \
FETCH_NUMBER(cx, -1, d2); \
d = d OP d2; \
regs.sp--; \
regs.sp--; \
STORE_NUMBER(cx, -1, d); \
JS_END_MACRO