This commit is contained in:
Andreas Gal 2008-08-12 14:29:09 -07:00
commit 4b6c770288

View File

@ -161,10 +161,12 @@
#define JS_FRIEND_API(t) JS_PUBLIC_API(t)
#define JS_FRIEND_DATA(t) JS_PUBLIC_DATA(t)
#ifdef _MSC_VER
#if defined(_MSC_VER) && defined(_M_IX86)
#define JS_FASTCALL __fastcall
#else
#elif defined(__GNUC__) && defined(__i386__)
#define JS_FASTCALL __attribute__((fastcall))
#else
#define JS_FASTCALL
#endif
#ifndef JS_INLINE