diff options
Diffstat (limited to 'libffi/src')
-rw-r--r-- | libffi/src/mips/ffitarget.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libffi/src/mips/ffitarget.h b/libffi/src/mips/ffitarget.h index c5f4e056841..d0fc983a74f 100644 --- a/libffi/src/mips/ffitarget.h +++ b/libffi/src/mips/ffitarget.h @@ -29,9 +29,17 @@ #ifdef linux # include <asm/sgidefs.h> +#elif defined(__rtems__) +/* + * Subprogram calling convention - copied from sgidefs.h + */ +#define _MIPS_SIM_ABI32 1 +#define _MIPS_SIM_NABI32 2 +#define _MIPS_SIM_ABI64 3 #else # include <sgidefs.h> #endif + # ifndef _ABIN32 # define _ABIN32 _MIPS_SIM_NABI32 # endif |