From c7af43d8b32d6526b3e07a4d087944f8ea56220b Mon Sep 17 00:00:00 2001 From: Brendan Kehoe Date: Tue, 26 Jan 1993 17:14:37 -0500 Subject: [PATCH] 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 --- gcc/collect2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2