collect2.c (write_list_with_asm): Use `__asm__' instead of `asm', to avoid problems...
authorBrendan Kehoe <brendan@gcc.gnu.org>
Tue, 26 Jan 1993 22:14:37 +0000 (17:14 -0500)
committerBrendan Kehoe <brendan@gcc.gnu.org>
Tue, 26 Jan 1993 22:14:37 +0000 (17:14 -0500)
        * collect2.c (write_list_with_asm): Use `__asm__' instead of
        `asm', to avoid problems with `-fno-asm'.

From-SVN: r3351

gcc/collect2.c

index 7068c4b..f7f6d2a 100644 (file)
@@ -1164,7 +1164,7 @@ write_list_with_asm (stream, prefix, list)
 {
   while (list)
     {
-      fprintf (stream, "%sx%d asm (\"%s\");\n",
+      fprintf (stream, "%sx%d __asm__ (\"%s\");\n",
               prefix, list->sequence, list->name);
       list = list->next;
     }