+ has a higher precendence than <<, so this needs to be parenthesized more... followup to bug 269538

This commit is contained in:
Benjamin Smedberg 2009-01-22 15:40:41 -05:00
parent 4177fe593c
commit dc3da95557

View File

@ -51,7 +51,7 @@
JS_BEGIN_EXTERN_C
#define JSLL_INIT(hi, lo) (((JSInt64)(hi)) << 32 + (JSInt64)(lo))
#define JSLL_INIT(hi, lo) ((((JSInt64)(hi)) << 32) + (JSInt64)(lo))
/***********************************************************************
** MACROS: JSLL_*