collect2.c (write_list_with_asm): Use `__asm__' instead of `asm', to avoid problems with `-fno-asm'.

* collect2.c (write_list_with_asm): Use `__asm__' instead of
        `asm', to avoid problems with `-fno-asm'.

From-SVN: r3351
This commit is contained in:
Brendan Kehoe 1993-01-26 17:14:37 -05:00
parent 8ab74e1295
commit c7af43d8b3
1 changed files with 1 additions and 1 deletions

View 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;
}