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
This commit is contained in:
Stan Shebs 2001-02-21 01:50:36 +00:00 committed by Stan Shebs
parent c740cee29d
commit 33011c358e
2 changed files with 6 additions and 1 deletions

View File

@ -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...

View File

@ -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);
}