diff options
| author | skrll <skrll@NetBSD.org> | 2021-02-04 08:51:42 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2021-02-04 08:51:42 +0000 |
| commit | 287443ce70af506c33c35fec00e1bd81a774f596 (patch) | |
| tree | 171236f885d21fcb321ab67d310f94d2c3ea2f43 /sys/arch/mips/include | |
| parent | 182810c8adb595f9f46dd2c0893a255be18da841 (diff) | |
Use t9 instead of $25 in the SETUP_GP64 macro to hopefully make things
a bit clearer. Same libc binary after.
Diffstat (limited to 'sys/arch/mips/include')
| -rw-r--r-- | sys/arch/mips/include/asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips/include/asm.h b/sys/arch/mips/include/asm.h index e81d4e8ff65..dba947dbd56 100644 --- a/sys/arch/mips/include/asm.h +++ b/sys/arch/mips/include/asm.h @@ -1,4 +1,4 @@ -/* $NetBSD: asm.h,v 1.62 2020/09/26 08:19:11 simonb Exp $ */ +/* $NetBSD: asm.h,v 1.63 2021/02/04 08:51:42 skrll Exp $ */ /* * Copyright (c) 1992, 1993 @@ -619,7 +619,7 @@ _C_LABEL(x): #define SETUP_GPX(r) /* o32 specific */ #define SETUP_GPX_L(r,lbl) /* o32 specific */ #define SAVE_GP(x) /* o32 specific */ -#define SETUP_GP64(a,b) .cpsetup $25, a, b +#define SETUP_GP64(a,b) .cpsetup t9, a, b #define SETUP_GPX64(a,b) \ .set push; \ move b,ra; \ |
