From: Brendan Kehoe Date: Tue, 26 Jan 1993 22:14:37 +0000 (-0500) Subject: collect2.c (write_list_with_asm): Use `__asm__' instead of `asm', to avoid problems... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7af43d8b32d6526b3e07a4d087944f8ea56220b;p=gcc.git 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 --- diff --git a/gcc/collect2.c b/gcc/collect2.c index 7068c4ba8cb..f7f6d2ab948 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -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; }