3 @@ -10771,7 +10771,7 @@ static int JS_ToInt64SatFree(JSContext *
7 - else if (d > INT64_MAX)
8 + else if (d > (double)INT64_MAX)
12 @@ -55329,7 +55329,7 @@ static JSValue js_atomics_wait(JSContext
14 if (JS_ToFloat64(ctx, &d, argv[3]))
16 - if (isnan(d) || d > INT64_MAX)
17 + if (isnan(d) || d > (double)INT64_MAX)