Commit c0baf25a authored by amylaar's avatar amylaar
Browse files

From SAITOH Masanobu:

	* sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35452 138bc75d-0d04-0410-961f-82ee72b054a4
parent 68dacd00
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
......
......@@ -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));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment