Does this FASTCALL definition helps? how much? in the mean

time just don't enable it for clang since it breaks
arm_instruction.cpp compilation with that. clang finally
compiles desmume \o/
This commit is contained in:
riccardom 2010-04-05 13:07:30 +00:00
parent e324dc1e9a
commit b12c226333
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@
#ifndef FASTCALL
#ifdef __MINGW32__
#define FASTCALL __attribute__((fastcall))
#elif defined (__i386__)
#elif defined (__i386__) && !defined(__clang__)
#define FASTCALL __attribute__((regparm(3)))
#elif defined(_MSC_VER) || defined(__INTEL_COMPILER)
#define FASTCALL