Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/gnu/dist/gcc/config/sh Pullup revision 1.3 (approved by...



details:   https://anonhg.NetBSD.org/src/rev/6469c8dc9c06
branches:  netbsd-1-5
changeset: 489085:6469c8dc9c06
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sat Aug 12 19:09:12 2000 +0000

description:
Pullup revision 1.3 (approved by thorpej):

 fix two bugs:
        - cc1 dumps core when "-pg" is used
        - gas produce a syntax error

diffstat:

 gnu/dist/gcc/config/sh/sh.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (16 lines):

diff -r a10e202b7828 -r 6469c8dc9c06 gnu/dist/gcc/config/sh/sh.h
--- a/gnu/dist/gcc/config/sh/sh.h       Sat Aug 12 19:07:24 2000 +0000
+++ b/gnu/dist/gcc/config/sh/sh.h       Sat Aug 12 19:09:12 2000 +0000
@@ -1566,10 +1566,10 @@
 }
 
 #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.



Home | Main Index | Thread Index | Old Index