This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix handling of %/ for Alpha for older assemblers
- To: gcc-patches at gcc dot gnu dot org
- Subject: Fix handling of %/ for Alpha for older assemblers
- From: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- Date: Wed, 25 Jul 01 18:13:32 EDT
This was suggested (as a temporary measure) by Jeff Law.
Wed Jul 25 18:00:05 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.
*** config/alpha/alpha.c 2001/07/25 17:34:04 1.176
--- config/alpha/alpha.c 2001/07/25 21:45:57
*************** print_operand (file, x, code)
*** 3847,3851 ****
if (trap || round)
! fprintf (file, "/%s%s", (trap ? trap : ""), (round ? round : ""));
break;
--- 3847,3851 ----
if (trap || round)
! fprintf (file, "%s%s", (trap ? trap : ""), (round ? round : ""));
break;