rs6000.c (output_cbranch): Output branches on separate lines instead of using ';...
authorStan Shebs <shebs@apple.com>
Wed, 21 Feb 2001 01:50:36 +0000 (01:50 +0000)
committerStan Shebs <shebs@gcc.gnu.org>
Wed, 21 Feb 2001 01:50:36 +0000 (01:50 +0000)
        * config/rs6000/rs6000.c (output_cbranch): Output branches
        on separate lines instead of using ';' to separate.

From-SVN: r39935

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index c801bed510be81b8b5a73fafda791776b5e6aaf9..e70bd8373b1afda03f1b189ebd9ed10cddeff763 100644 (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...
index 5f14dcdd1dc3523a6b3655a822372f446bb1a990..52e951f97eef2ec7718e6b89fb40307f47cbba59 100644 (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);
     }