* config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.
From-SVN: r44368
This commit is contained in:
parent
02e3f1a8e2
commit
472385a25f
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
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.
|
||||
(print_wide_int): New function; call instead of direct fprintf.
|
||||
(dbxout_type_index): Adjust calls of CHARS to be more accurate.
|
||||
|
|
|
@ -3846,7 +3846,7 @@ print_operand (file, x, code)
|
|||
const char *round = get_round_mode_suffix ();
|
||||
|
||||
if (trap || round)
|
||||
fprintf (file, "/%s%s", (trap ? trap : ""), (round ? round : ""));
|
||||
fprintf (file, "%s%s", (trap ? trap : ""), (round ? round : ""));
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue