fix two bugs:

- cc1 dumps core when "-pg" is used
	- gas produces a syntax error
This commit is contained in:
msaitoh 2000-08-02 12:07:12 +00:00
parent e049977033
commit 559af6df3c
1 changed files with 2 additions and 2 deletions

View File

@ -1566,10 +1566,10 @@ dtors_section() \
}
#define ASM_OUTPUT_REG_PUSH(file, v) \
fprintf ((file), "\tmov.l\tr%s,-@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%s\n", (v));
fprintf ((file), "\tmov.l\t@r15+,r%d\n", (v));
/* The assembler's names for the registers. RFP need not always be used as
the Real framepointer; it can also be used as a normal general register.