From 2fda7fc4f5cf6490355220cbf001bc02ae3fda81 Mon Sep 17 00:00:00 2001 From: msaitoh Date: Thu, 18 Jan 2001 07:04:35 +0000 Subject: [PATCH] ifx output_ieee_ccmpeq() bug: - 2nd argument is not rtx but rtx * - return value of output_ieee_ccmpeq is not void but char * --- gnu/dist/gcc/config/sh/sh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/dist/gcc/config/sh/sh.c b/gnu/dist/gcc/config/sh/sh.c index aaa609fe2675..e809a4e9dbfa 100644 --- a/gnu/dist/gcc/config/sh/sh.c +++ b/gnu/dist/gcc/config/sh/sh.c @@ -712,9 +712,9 @@ output_branchy_insn (code, template, insn, operands) char * output_ieee_ccmpeq (insn, operands) - rtx insn, operands; + rtx insn, *operands; { - output_branchy_insn (NE, "bt\t%l9\\;fcmp/eq\t%1,%0", insn, operands); + return output_branchy_insn (NE, "bt\t%l9\\;fcmp/eq\t%1,%0", insn, operands); } /* Output to FILE the start of the assembler file. */