]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* rs6000.c (output_cbranch): Use $, not %$, in output template.
authorZack Weinberg <zack@codesourcery.com>
Thu, 22 Nov 2001 06:54:45 +0000 (06:54 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Thu, 22 Nov 2001 06:54:45 +0000 (01:54 -0500)
From-SVN: r47258

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

index 4909aaca435d2b01f45de61185da2ddb719d4f05..cbdf4746f2de14b818412336463f74850a34329d 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-20  Zack Weinberg  <zack@codesourcery.com>
+
+       * rs6000.c (output_cbranch): Use $, not %$, in output template.
+
 2001-11-21  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
 
        * tree-dump.c: Rename from c-dump.c. Include c-tree.h, not c-common.h.
index 18f44cbea0c7354976815783809b3c00f03e5b5b..93fe5f28443223dc4aaa8fa6ee9c4ae4b51cb8ab 100644 (file)
@@ -5681,7 +5681,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\n\tb %s", '%', label);
+       s += sprintf (s, ",$+8\n\tb %s", label);
       else
        s += sprintf (s, ",%s", label);
     }