Revert patch for bug 505123, changeset f1a04b1c0b37. 0.9% SunSpider regression.

This commit is contained in:
Jim Blandy 2009-08-06 14:49:56 -07:00
parent 782cbb5800
commit 8d67abe8b7
2 changed files with 3 additions and 3 deletions

View File

@ -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)
{
/*

View File

@ -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__