From SAITOH Masanobu:
authorJ"orn Rennecke <amylaar@cygnus.co.uk>
Thu, 3 Aug 2000 14:55:05 +0000 (14:55 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Thu, 3 Aug 2000 14:55:05 +0000 (15:55 +0100)
* sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax.

From-SVN: r35452

gcc/ChangeLog
gcc/config/sh/sh.h

index d3f9b256856424328b3662925ad8590e42929b35..c15402a8e651a7e05fddf5e5d90c03e607777104 100644 (file)
@@ -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
index 82be5c885bf06777810f59918f13135799f302d0..8d83266d19a93b86082325602760c20209fe5151 100644 (file)
@@ -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));