diff options
Diffstat (limited to 'includes/stg/Regs.h')
-rw-r--r-- | includes/stg/Regs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/stg/Regs.h b/includes/stg/Regs.h index e50b431d14..1d0c00c491 100644 --- a/includes/stg/Regs.h +++ b/includes/stg/Regs.h @@ -141,6 +141,8 @@ typedef struct StgRegTable_ { #define SAVE_R6 (BaseReg->rR6) #define SAVE_R7 (BaseReg->rR7) #define SAVE_R8 (BaseReg->rR8) +#define SAVE_R9 (BaseReg->rR9) +#define SAVE_R10 (BaseReg->rR10) #define SAVE_F1 (BaseReg->rF1) #define SAVE_F2 (BaseReg->rF2) @@ -611,6 +613,8 @@ GLOBAL_REG_DECL(bdescr *,HpAlloc,REG_HpAlloc) CALLER_SAVE_R6 \ CALLER_SAVE_R7 \ CALLER_SAVE_R8 \ + CALLER_SAVE_R9 \ + CALLER_SAVE_R10 \ CALLER_SAVE_F1 \ CALLER_SAVE_F2 \ CALLER_SAVE_F3 \ @@ -638,6 +642,8 @@ GLOBAL_REG_DECL(bdescr *,HpAlloc,REG_HpAlloc) CALLER_RESTORE_R6 \ CALLER_RESTORE_R7 \ CALLER_RESTORE_R8 \ + CALLER_RESTORE_R9 \ + CALLER_RESTORE_R10 \ CALLER_RESTORE_F1 \ CALLER_RESTORE_F2 \ CALLER_RESTORE_F3 \ |