OSDN Git Service

* pa.c (output_arg_descriptor): Reverse polarity of test for
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 1 Jul 1993 19:22:47 +0000 (19:22 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 1 Jul 1993 19:22:47 +0000 (19:22 +0000)
HP_FP_ARG_DESCRIPTOR_REVERSED.
* pa.h (ASM_DOUBLE_ARG_DESCRIPTORS): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4817 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 05cd99c..40840ef 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 9cbe294..e478992 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)