views:

132

answers:

1

REGPARM is defined as:

#if __GNUC__ >= 3
#define REGPARM(num)    __attribute__((regparm(num)))
#else
#if defined (_MSC_VER) || defined(__BORLANDC__)
#define REGPARM(num)    __fastcall
#else
#define REGPARM(num)
#endif
#endif

There is a lot of warnings: 'regparm' attribute directive ignored. How can I (safely) remove them? Thanks

A: 

get rid of them by __APPLE__

ohho