pa.c (output_arg_descriptor): Reverse polarity of test for HP_FP_ARG_DESCRIPTOR_REVERSED.
authorJeff Law <law@gcc.gnu.org>
Thu, 1 Jul 1993 19:22:47 +0000 (13:22 -0600)
committerJeff Law <law@gcc.gnu.org>
Thu, 1 Jul 1993 19:22:47 +0000 (13:22 -0600)
* 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

gcc/config/pa/pa.c
gcc/config/pa/pa.h

index 05cd99c31b803d08a62fd75c9cec357a77c68152..40840eff625becadb511a66b2a43bfc45a97e98e 100644 (file)
@@ -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
index 9cbe29471ec6ec72030e1b0fbf264a6d05ed89ea..e478992eecbd29dc0f4201f97f9b8e7b8f068daf 100644 (file)
@@ -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)