Commit 15ca066d by Mark Elbrecht Committed by DJ Delorie

djgpp.h (UNIQUE_SECTION): Constify the variables name and prefix.

* config/i386/djgpp.h (UNIQUE_SECTION): Constify the variables
name and prefix.

From-SVN: r36651
parent a3f7444b
2000-09-27 Mark Elbrecht <snowball3@bigfoot.com>
* config/i386/djgpp.h (UNIQUE_SECTION): Constify the variables
name and prefix.
Tue 26-Sep-2000 18:25:38 BST Neil Booth <neilb@earthling.net> Tue 26-Sep-2000 18:25:38 BST Neil Booth <neilb@earthling.net>
* gcc.c (cpp_options): Add spec for -ftabstop=. * gcc.c (cpp_options): Add spec for -ftabstop=.
......
...@@ -266,7 +266,8 @@ dtor_section () \ ...@@ -266,7 +266,8 @@ dtor_section () \
#define UNIQUE_SECTION(DECL,RELOC) \ #define UNIQUE_SECTION(DECL,RELOC) \
do { \ do { \
int len; \ int len; \
char *name, *string, *prefix; \ const char *name, *prefix; \
char *string; \
\ \
name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \ name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \
\ \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment