http://codereview.chromium.org/100336/diff/11/1006 File src/globals.h (right):
http://codereview.chromium.org/100336/diff/11/1006#newcode59 Line 59: #define INT64_C(x) (x ## LL) We should use our own names here. Also, the stdint code takes in to account 64 bit: # if __WORDSIZE == 64 # define __INT64_C(c) c ## L # define __UINT64_C(c) c ## UL # else # define __INT64_C(c) c ## LL # define __UINT64_C(c) c ## ULL # endif Looks like LL should be 64bit on both though. http://codereview.chromium.org/100336 --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
