* rs6000.c (output_cbranch): Use $, not %$, in output template.

From-SVN: r47258
This commit is contained in:
Zack Weinberg 2001-11-22 06:54:45 +00:00 committed by David Edelsohn
parent 89d684bba3
commit 44518ddd62
2 changed files with 5 additions and 1 deletions

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

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