Commit 472385a2 by Richard Kenner Committed by Richard Kenner

* config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.

From-SVN: r44368
parent 02e3f1a8
Wed Jul 25 18:00:05 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Wed Jul 25 18:00:05 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.
* dbxout.c: Consistently use putc instead of fputc. * dbxout.c: Consistently use putc instead of fputc.
(print_wide_int): New function; call instead of direct fprintf. (print_wide_int): New function; call instead of direct fprintf.
(dbxout_type_index): Adjust calls of CHARS to be more accurate. (dbxout_type_index): Adjust calls of CHARS to be more accurate.
......
...@@ -3846,7 +3846,7 @@ print_operand (file, x, code) ...@@ -3846,7 +3846,7 @@ print_operand (file, x, code)
const char *round = get_round_mode_suffix (); const char *round = get_round_mode_suffix ();
if (trap || round) if (trap || round)
fprintf (file, "/%s%s", (trap ? trap : ""), (round ? round : "")); fprintf (file, "%s%s", (trap ? trap : ""), (round ? round : ""));
break; break;
} }
......
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