diff options
Diffstat (limited to 'target-arm/cpu.h')
-rw-r--r-- | target-arm/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 7cc7da60e9..052634cd50 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -110,6 +110,11 @@ typedef struct CPUARMState { float_status fp_status; } vfp; +#if defined(CONFIG_USER_ONLY) + /* For usermode syscall translation. */ + int eabi; +#endif + CPU_COMMON } CPUARMState; |