Commit 1f85a612 by Kaveh R. Ghazi Committed by Kaveh Ghazi

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
parent e8751f35
2003-05-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* m68hc11.c: Don't use the `0' flag for asm_fprintf specifiers.
* m68k.c: Likewise.
* m68k.h: Likewise.
2003-05-22 Zack Weinberg <zack@codesourcery.com> 2003-05-22 Zack Weinberg <zack@codesourcery.com>
PR other/2873 PR other/2873
......
...@@ -2225,7 +2225,7 @@ print_operand (file, op, letter) ...@@ -2225,7 +2225,7 @@ print_operand (file, op, letter)
} }
else if (letter == '#') else if (letter == '#')
{ {
asm_fprintf (file, "%0I"); asm_fprintf (file, "%I");
} }
if (GET_CODE (op) == REG) if (GET_CODE (op) == REG)
...@@ -2249,9 +2249,9 @@ print_operand (file, op, letter) ...@@ -2249,9 +2249,9 @@ print_operand (file, op, letter)
if (GET_CODE (op) == SYMBOL_REF && (letter == 'b' || letter == 'h')) if (GET_CODE (op) == SYMBOL_REF && (letter == 'b' || letter == 'h'))
{ {
if (letter == 'b') if (letter == 'b')
asm_fprintf (file, "%0I%%lo("); asm_fprintf (file, "%I%%lo(");
else else
asm_fprintf (file, "%0I%%hi("); asm_fprintf (file, "%I%%hi(");
output_addr_const (file, op); output_addr_const (file, op);
fprintf (file, ")"); fprintf (file, ")");
...@@ -2347,7 +2347,7 @@ print_operand (file, op, letter) ...@@ -2347,7 +2347,7 @@ print_operand (file, op, letter)
int need_parenthesize = 0; int need_parenthesize = 0;
if (letter != 'i') if (letter != 'i')
asm_fprintf (file, "%0I"); asm_fprintf (file, "%I");
else else
need_parenthesize = must_parenthesize (op); need_parenthesize = must_parenthesize (op);
......
...@@ -1396,7 +1396,7 @@ __transfer_from_trampoline () \ ...@@ -1396,7 +1396,7 @@ __transfer_from_trampoline () \
`assemble_name' uses this. */ `assemble_name' uses this. */
#define ASM_OUTPUT_LABELREF(FILE,NAME) \ #define ASM_OUTPUT_LABELREF(FILE,NAME) \
asm_fprintf (FILE, "%0U%s", NAME) asm_fprintf (FILE, "%U%s", NAME)
/* This is how to store into the string LABEL /* This is how to store into the string LABEL
the symbol_ref name of an internal numbered label where the symbol_ref name of an internal numbered label where
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment