Commit 2e71ae82 by J"orn Rennecke Committed by Joern Rennecke

From SAITOH Masanobu:

	* sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax.

From-SVN: r35452
parent 5535a5a6
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