mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
+ has a higher precendence than <<, so this needs to be parenthesized more... followup to bug 269538
This commit is contained in:
parent
4177fe593c
commit
dc3da95557
@ -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_*
|
||||
|
Loading…
Reference in New Issue
Block a user