From: uweigand Date: Mon, 4 Feb 2002 15:43:02 +0000 (+0000) Subject: * gcc/config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Fixed X-Git-Tag: upstream/4.9.2~88916 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b442c5a913994e2b8df42df12636c1be7cc7c8d6;p=platform%2Fupstream%2Flinaro-gcc.git * gcc/config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Fixed register names for regular asm () construct. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49475 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 11e1f63..43c4703 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-02-04 Ulrich Weigand + + * gcc/config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Fixed + register names for regular asm () construct. + 2002-02-04 Jakub Jelinek * config/i386/i386.md (movsf_1): Allow moving SF values in MMX diff --git a/gcc/config/s390/s390.h b/gcc/config/s390/s390.h index 99e1ef9..f26cd65 100644 --- a/gcc/config/s390/s390.h +++ b/gcc/config/s390/s390.h @@ -1301,10 +1301,10 @@ extern struct rtx_def *s390_compare_op0, *s390_compare_op1; #ifndef __s390x__ #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \ asm (SECTION_OP "\n\ - bras\t%%r2,1f\n\ + bras\t%r2,1f\n\ 0: .long\t" USER_LABEL_PREFIX #FUNC " - 0b\n\ -1: l\t%%r3,0(%%r2)\n\ - bas\t%%r14,0(%%r3,%%r2)\n\ +1: l\t%r3,0(%r2)\n\ + bas\t%r14,0(%r3,%r2)\n\ .previous"); #endif