diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/scummsys.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 385fedcf1d..b0f514cdd1 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -372,6 +372,10 @@ #if !defined(FORCEINLINE) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) #define FORCEINLINE inline __attribute__((__always_inline__)) #endif +#elif defined(__INTEL_COMPILER) + #define NORETURN_POST __attribute__((__noreturn__)) + #define PACKED_STRUCT __attribute__((__packed__)) + #define GCC_PRINTF(x,y) __attribute__((__format__(printf, x, y))) #else #define PACKED_STRUCT #define GCC_PRINTF(x,y) |
