diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-05-22 17:54:20 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-05-22 17:54:20 +0000 |
commit | 1f85a61235ffff1f585386ac3fe113577b2a756a (patch) | |
tree | 27fc7e51e5b1cd871f1ddc643338dea89e89c12b /gcc/config/m68hc11 | |
parent | e8751f35270e3802deaefb86371097dd48c51ed9 (diff) | |
download | gcc-1f85a61235ffff1f585386ac3fe113577b2a756a.zip gcc-1f85a61235ffff1f585386ac3fe113577b2a756a.tar.gz gcc-1f85a61235ffff1f585386ac3fe113577b2a756a.tar.bz2 |
m68hc11.c: Don't use the `0' flag for asm_fprintf specifiers.
* m68hc11.c: Don't use the `0' flag for asm_fprintf specifiers.
* m68k.c: Likewise.
* m68k.h: Likewise.
From-SVN: r67093
Diffstat (limited to 'gcc/config/m68hc11')
-rw-r--r-- | gcc/config/m68hc11/m68hc11.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/m68hc11/m68hc11.c b/gcc/config/m68hc11/m68hc11.c index dbc4340..0e2f623 100644 --- a/gcc/config/m68hc11/m68hc11.c +++ b/gcc/config/m68hc11/m68hc11.c @@ -2225,7 +2225,7 @@ print_operand (file, op, letter) } else if (letter == '#') { - asm_fprintf (file, "%0I"); + asm_fprintf (file, "%I"); } if (GET_CODE (op) == REG) @@ -2249,9 +2249,9 @@ print_operand (file, op, letter) if (GET_CODE (op) == SYMBOL_REF && (letter == 'b' || letter == 'h')) { if (letter == 'b') - asm_fprintf (file, "%0I%%lo("); + asm_fprintf (file, "%I%%lo("); else - asm_fprintf (file, "%0I%%hi("); + asm_fprintf (file, "%I%%hi("); output_addr_const (file, op); fprintf (file, ")"); @@ -2347,7 +2347,7 @@ print_operand (file, op, letter) int need_parenthesize = 0; if (letter != 'i') - asm_fprintf (file, "%0I"); + asm_fprintf (file, "%I"); else need_parenthesize = must_parenthesize (op); |