From 33011c358ecb53978ad9d93f1d1dc5e9cd1ad551 Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Wed, 21 Feb 2001 01:50:36 +0000 Subject: [PATCH] rs6000.c (output_cbranch): Output branches on separate lines instead of using ';' to separate. * config/rs6000/rs6000.c (output_cbranch): Output branches on separate lines instead of using ';' to separate. From-SVN: r39935 --- gcc/ChangeLog | 5 +++++ gcc/config/rs6000/rs6000.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c801bed510b..e70bd8373b1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-02-20 Stan Shebs + + * config/rs6000/rs6000.c (output_cbranch): Output branches + on separate lines instead of using ';' to separate. + 2001-02-20 Neil Booth * cppinit.c (set_lang): Move builtin handling to... diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 5f14dcdd1dc..52e951f97ee 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -4631,7 +4631,7 @@ output_cbranch (op, label, reversed, insn) /* If the branch distance was too far, we may have to use an unconditional branch to go the distance. */ if (need_longbranch) - s += sprintf (s, ",%c$+8 ; b %s", '%', label); + s += sprintf (s, ",%c$+8\n\tb %s", '%', label); else s += sprintf (s, ",%s", label); }