From 516dd80f5c10c865107ddd49371094894720e9eb Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Wed, 30 Apr 1997 23:48:10 +0000 Subject: [PATCH] x From-SVN: r13996 --- gcc/config/i386/winnt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/i386/winnt.c b/gcc/config/i386/winnt.c index 72666921ed1..e8e5df36425 100644 --- a/gcc/config/i386/winnt.c +++ b/gcc/config/i386/winnt.c @@ -66,7 +66,7 @@ gen_stdcall_suffix (decl) /* Cover function for UNIQUE_SECTION. */ -tree +void i386_pe_unique_section (decl, reloc) tree decl; int reloc; @@ -89,5 +89,5 @@ i386_pe_unique_section (decl, reloc) string = alloca (len + 1); sprintf (string, "%s%s", prefix, name); - return build_string (len, string); + DECL_SECTION_NAME (decl) = build_string (len, string); }