diff options
author | J"orn Rennecke <amylaar@cygnus.co.uk> | 2000-08-03 14:55:05 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2000-08-03 15:55:05 +0100 |
commit | 2e71ae828891078647eb38a16ac62dd865848c30 (patch) | |
tree | 660d1d37f077a23271a6f52db00b2633997e05ca | |
parent | 5535a5a62e8fd363773ebc194b609d0371e0e5cd (diff) | |
download | gcc-2e71ae828891078647eb38a16ac62dd865848c30.zip gcc-2e71ae828891078647eb38a16ac62dd865848c30.tar.gz gcc-2e71ae828891078647eb38a16ac62dd865848c30.tar.bz2 |
From SAITOH Masanobu:
* sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax.
From-SVN: r35452
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sh/sh.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d3f9b25..c15402a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 3 15:53:03 2000 J"orn Rennecke <amylaar@cygnus.co.uk> + + From SAITOH Masanobu: + * sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax. + 2000-08-03 David Billinghurst <David.Billinghurst@riotinto.com.au> * config/i386/cygwin.h: Remove -remap from CPP_SPEC since this option diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index 82be5c8..8d83266 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1870,7 +1870,7 @@ dtors_section() \ } #define ASM_OUTPUT_REG_PUSH(file, v) \ - fprintf ((file), "\tmov.l\tr%d,-@r15\n", (v)); + fprintf ((file), "\tmov.l\tr%d,@-r15\n", (v)); #define ASM_OUTPUT_REG_POP(file, v) \ fprintf ((file), "\tmov.l\t@r15+,r%d\n", (v)); |