]> gcc.gnu.org Git - gcc.git/commitdiff
final.c (output_addr_const): Handle case where ASM_OPEN_PAREN and ASM_CLOSE_PAREN...
authorArt Haas <ahaas@neosoft.com>
Wed, 25 Aug 1999 02:52:15 +0000 (02:52 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 25 Aug 1999 02:52:15 +0000 (20:52 -0600)
        * final.c (output_addr_const): Handle case where ASM_OPEN_PAREN
        and ASM_CLOSE_PAREN are empty strings.

From-SVN: r28833

gcc/ChangeLog
gcc/final.c

index 0ca088fa2f03231a79320dfdd06b70c808aeb780..76497478595cbfab190aaf69dd11973b8ce4988f 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug 24 20:49:47 1999  Art Haas  <ahaas@neosoft.com>
+
+       * final.c (output_addr_const): Handle case where ASM_OPEN_PAREN
+       and ASM_CLOSE_PAREN are empty strings.
+
 Wed Aug 25 12:46:22 1999  Fred Fish  <fnf@cygnus.com>
                          Geoffrey Keating <geoffk@cygnus.com>
 
index 6b0966a320bbd0c38bdc81b3f94a14cadcde5bc5..10c1016654fc457f99af3116b9a70d78c33c0d4d 100644 (file)
@@ -3671,9 +3671,9 @@ output_addr_const (file, x)
       if (GET_CODE (XEXP (x, 1)) == CONST_INT
          && INTVAL (XEXP (x, 1)) < 0)
        {
-         fprintf (file, ASM_OPEN_PAREN);
+         fprintf (file, "%s", ASM_OPEN_PAREN);
          output_addr_const (file, XEXP (x, 1));
-         fprintf (file, ASM_CLOSE_PAREN);
+         fprintf (file, "%s", ASM_CLOSE_PAREN);
        }
       else
        output_addr_const (file, XEXP (x, 1));
This page took 0.071662 seconds and 5 git commands to generate.