From: Jeff Law Date: Thu, 1 Jul 1993 19:22:47 +0000 (-0600) Subject: pa.c (output_arg_descriptor): Reverse polarity of test for HP_FP_ARG_DESCRIPTOR_REVERSED. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=22d6e660fe3386537267499fe1a65ed93a93193b;p=gcc.git pa.c (output_arg_descriptor): Reverse polarity of test for HP_FP_ARG_DESCRIPTOR_REVERSED. * pa.c (output_arg_descriptor): Reverse polarity of test for HP_FP_ARG_DESCRIPTOR_REVERSED. * pa.h (ASM_DOUBLE_ARG_DESCRIPTORS): Likewise. From-SVN: r4817 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 05cd99c31b8..40840eff625 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3090,7 +3090,7 @@ output_arg_descriptor (insn) arg_regs[regno - 32] = "FR"; else { -#ifdef HP_FP_ARG_DESCRIPTOR_REVERSED +#ifndef HP_FP_ARG_DESCRIPTOR_REVERSED arg_regs[regno - 33] = "FR"; arg_regs[regno - 32] = "FU"; #else @@ -3105,7 +3105,7 @@ output_arg_descriptor (insn) arg_regs[(regno - 44) / 2] = "FR"; else { -#ifdef HP_FP_ARG_DESCRIPTOR_REVERSED +#ifndef HP_FP_ARG_DESCRIPTOR_REVERSED arg_regs[(regno - 46) / 2] = "FR"; arg_regs[(regno - 46) / 2 + 1] = "FU"; #else diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 9cbe29471ec..e478992eecb 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -823,7 +823,7 @@ extern struct rtx_def *hppa_compare_op0, *hppa_compare_op1; extern enum cmp_type hppa_branch_type; /* Output the label for a function definition. */ -#ifdef HP_FP_ARG_DESCRIPTOR_REVERSED +#ifndef HP_FP_ARG_DESCRIPTOR_REVERSED #define ASM_DOUBLE_ARG_DESCRIPTORS(FILE, ARG0, ARG1) \ do { fprintf (FILE, ",ARGW%d=FR", (ARG0)); \ fprintf (FILE, ",ARGW%d=FU", (ARG1));} while (0)