Bug 569547 - fastcall useless on win64. r=benjamin

This commit is contained in:
Jacek Caban 2010-06-14 12:12:48 +02:00
parent a77e168557
commit bc7f2875ac

View File

@ -155,7 +155,7 @@
(__GNUC__ >= 3) && !defined(XP_OS2)
#define NS_FASTCALL __attribute__ ((regparm (3), stdcall))
#define NS_CONSTRUCTOR_FASTCALL __attribute__ ((regparm (3), stdcall))
#elif defined(XP_WIN)
#elif defined(XP_WIN) && !defined(_WIN64)
#define NS_FASTCALL __fastcall
#define NS_CONSTRUCTOR_FASTCALL
#else