diff options
| author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-21 01:50:36 +0000 |
|---|---|---|
| committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-21 01:50:36 +0000 |
| commit | 3cec36a15562e71b08093df20cef43a8792bf2e7 (patch) | |
| tree | e9643f741b22e305fa4da405c502a918c529f6c5 /gcc | |
| parent | eef6c20f1e0ede5a3a5bfc031d370316f4934000 (diff) | |
| download | ppe42-gcc-3cec36a15562e71b08093df20cef43a8792bf2e7.tar.gz ppe42-gcc-3cec36a15562e71b08093df20cef43a8792bf2e7.zip | |
* config/rs6000/rs6000.c (output_cbranch): Output branches
on separate lines instead of using ';' to separate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39935 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -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 c801bed510b..e70bd8373b1 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 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); } |

