From 4daa93c4538dbdce80da946aa6abd460b6d77d47 Mon Sep 17 00:00:00 2001 From: qbix79 Date: Mon, 9 Mar 2009 15:53:19 +0000 Subject: [PATCH] fastcall works only on i386. (not on 64 bit) git-svn-id: https://svn.eduke32.com/eduke32@1236 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/funct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/source/funct.h b/polymer/eduke32/source/funct.h index 42ce5ecc4..6a05d0db9 100644 --- a/polymer/eduke32/source/funct.h +++ b/polymer/eduke32/source/funct.h @@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define __funct_h__ #ifndef _MSC_VER - #ifdef __GNUC__ + #if defined(__GNUC__) && defined(__i386__) #ifndef __fastcall #define __fastcall __attribute__((fastcall)) #endif