diff options
author | Stan Shebs <shebs@apple.com> | 2001-02-21 01:50:36 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2001-02-21 01:50:36 +0000 |
commit | 33011c358ecb53978ad9d93f1d1dc5e9cd1ad551 (patch) | |
tree | e9643f741b22e305fa4da405c502a918c529f6c5 | |
parent | c740cee29d8abc1b547e23cdb6992c70b44f6864 (diff) | |
download | gcc-33011c358ecb53978ad9d93f1d1dc5e9cd1ad551.zip gcc-33011c358ecb53978ad9d93f1d1dc5e9cd1ad551.tar.gz gcc-33011c358ecb53978ad9d93f1d1dc5e9cd1ad551.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c801bed..e70bd83 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-02-20 Stan Shebs <shebs@apple.com> + + * config/rs6000/rs6000.c (output_cbranch): Output branches + on separate lines instead of using ';' to separate. + 2001-02-20 Neil Booth <neil@daikokuya.demon.co.uk> * cppinit.c (set_lang): Move builtin handling to... diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 5f14dcd..52e951f9 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); } |