diff options
author | Jeff Law <law@gcc.gnu.org> | 1995-12-31 14:34:11 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1995-12-31 14:34:11 -0700 |
commit | 98d654f60c98701a785d7764d80ed3537d9caa9b (patch) | |
tree | 2376053f319c677571974265e0024438d1e93076 | |
parent | 7c4a1f088f2caac46f35e54ae06477c9a6f05c0e (diff) | |
download | gcc-98d654f60c98701a785d7764d80ed3537d9caa9b.zip gcc-98d654f60c98701a785d7764d80ed3537d9caa9b.tar.gz gcc-98d654f60c98701a785d7764d80ed3537d9caa9b.tar.bz2 |
pa.h (REG_ALLOC_ORDER): Allocate PA1.1 caller-saved FP regs before PA1.0 caller-saved FP regs.
* pa.h (REG_ALLOC_ORDER): Allocate PA1.1 caller-saved FP regs
before PA1.0 caller-saved FP regs.
From-SVN: r10919
-rw-r--r-- | gcc/config/pa/pa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index b455776..5c916e8 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -479,10 +479,10 @@ do { \ #define REG_ALLOC_ORDER \ { \ /* caller-saved fp regs. */ \ - 40, 41, 42, 43, 44, 45, 46, 47, \ 68, 69, 70, 71, 72, 73, 74, 75, \ 76, 77, 78, 79, 80, 81, 82, 83, \ 84, 85, 86, 87, \ + 40, 41, 42, 43, 44, 45, 46, 47, \ 32, 33, 34, 35, 36, 37, 38, 39, \ /* caller-saved general regs. */ \ 19, 20, 21, 22, 23, 24, 25, 26, \ |