From: Andris Pavenis Date: Mon, 28 Jan 2002 18:11:13 +0000 (+0200) Subject: * config/i386/djgpp.h: Use STRIP_NAME_ENCODING in macro UNIQUE_SECTION X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d534119e40ae2c5ec22d84e7c8f924452dc87ed9;p=gcc.git * config/i386/djgpp.h: Use STRIP_NAME_ENCODING in macro UNIQUE_SECTION From-SVN: r49289 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c41bf5f8186..40772502321 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-01-28 Andris Pavenis + + * config/i386/djgpp.h: Use STRIP_NAME_ENCODING in macro UNIQUE_SECTION + 2002-01-28 Richard Earnshaw * config.gcc (*-*-netbsdelf*): Set up generic parameters. diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 36b4639346f..600a11e2168 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -215,6 +215,8 @@ do { \ char *string; \ \ name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \ + /* Strip off any encoding in fnname. */ \ + STRIP_NAME_ENCODING (name, name); \ \ if (! DECL_ONE_ONLY (DECL)) \ { \