mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Revert patch for bug 505123, changeset f1a04b1c0b37. 0.9% SunSpider regression.
This commit is contained in:
parent
782cbb5800
commit
8d67abe8b7
@ -893,7 +893,7 @@ js_PrototypeHasIndexedProperties(JSContext *cx, JSObject *obj)
|
||||
|
||||
#ifdef JS_TRACER
|
||||
|
||||
static JSBool FASTCALL
|
||||
static inline JSBool FASTCALL
|
||||
dense_grow(JSContext* cx, JSObject* obj, jsint i, jsval v)
|
||||
{
|
||||
/*
|
||||
|
@ -179,7 +179,7 @@ math_atan(JSContext *cx, uintN argc, jsval *vp)
|
||||
return js_NewNumberInRootedValue(cx, z, vp);
|
||||
}
|
||||
|
||||
static jsdouble JS_FASTCALL
|
||||
static inline jsdouble JS_FASTCALL
|
||||
math_atan2_kernel(jsdouble x, jsdouble y)
|
||||
{
|
||||
#if defined(_MSC_VER)
|
||||
@ -227,7 +227,7 @@ math_atan2(JSContext *cx, uintN argc, jsval *vp)
|
||||
return js_NewNumberInRootedValue(cx, math_atan2_kernel (x, y), vp);
|
||||
}
|
||||
|
||||
static inline jsdouble
|
||||
static inline jsdouble JS_FASTCALL
|
||||
math_ceil_kernel(jsdouble x)
|
||||
{
|
||||
#ifdef __APPLE__
|
||||
|
Loading…
Reference in New Issue
Block a user