From: J"orn Rennecke Date: Thu, 3 Aug 2000 14:55:05 +0000 (+0000) Subject: From SAITOH Masanobu: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e71ae828891078647eb38a16ac62dd865848c30;p=gcc.git From SAITOH Masanobu: * sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax. From-SVN: r35452 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d3f9b256856..c15402a8e65 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 3 15:53:03 2000 J"orn Rennecke + + From SAITOH Masanobu: + * sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax. + 2000-08-03 David Billinghurst * 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 82be5c885bf..8d83266d19a 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));