From: Jeff Law Date: Tue, 14 Jun 1994 19:14:26 +0000 (-0600) Subject: pa.c (output_arg_descriptor): Restore old behavior for SImode USE insns of FP registe... X-Git-Tag: misc/cutover-egcs-0~6493 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0616842674b6d7a5cc0b52681b5704f592d76bd;p=thirdparty%2Fgcc.git pa.c (output_arg_descriptor): Restore old behavior for SImode USE insns of FP registers (used by untyped call... * pa.c (output_arg_descriptor): Restore old behavior for SImode USE insns of FP registers (used by untyped call support). From-SVN: r7450 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 7c33fc2a544f..a75b35372fb5 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3175,11 +3175,9 @@ output_arg_descriptor (call_insn) } else if (regno >= 32 && regno <= 39) { - if ((regno & 1) != 0) - abort (); if (arg_mode == SFmode) arg_regs[(regno - 32) / 2] = "FR"; - else if (arg_mode == DFmode) + else { #ifndef HP_FP_ARG_DESCRIPTOR_REVERSED arg_regs[(regno - 34) / 2] = "FR"; @@ -3189,8 +3187,6 @@ output_arg_descriptor (call_insn) arg_regs[(regno - 34) / 2 + 1] = "FR"; #endif } - else - abort (); } } fputs ("\t.CALL ", asm_out_file);