From 1f85a61235ffff1f585386ac3fe113577b2a756a Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Thu, 22 May 2003 17:54:20 +0000 Subject: 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 --- gcc/config/m68hc11/m68hc11.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/config/m68hc11') 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); -- cgit v1.1