diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c05031a0069..e8c93fd6b6b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-07-04 J"orn Rennecke + + * sh.c (output_ieee_ccmpeq): Replace "\\;" with "\n\t". + 2005-07-03 Joseph S. Myers * bb-reorder.c, c-pch.c, c-pragma.c, c.opt, cfghooks.c, cfgloop.c, diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 6e8e299f304..7e30e97cf2d 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -1686,7 +1686,8 @@ output_branchy_insn (enum rtx_code code, const char *template, const char * output_ieee_ccmpeq (rtx insn, rtx *operands) { - return output_branchy_insn (NE, "bt\t%l9\\;fcmp/eq\t%1,%0", insn, operands); + return output_branchy_insn (NE, "bt\t%l9\n\tfcmp/eq\t%1,%0", + insn, operands); } /* Output the start of the assembler file. */