diff options
author | Mark Elbrecht <snowball3@bigfoot.com> | 2000-09-27 04:54:34 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2000-09-27 00:54:34 -0400 |
commit | 15ca066dde069c6453cc87ff36be3a0c580b8c69 (patch) | |
tree | e26d7625ca198aca789e2bf270f1e03914e6b284 /gcc/config/i386/djgpp.h | |
parent | a3f7444bf257ed2e293b717144ec25c9c7f079d3 (diff) | |
download | gcc-15ca066dde069c6453cc87ff36be3a0c580b8c69.tar.gz |
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
Diffstat (limited to 'gcc/config/i386/djgpp.h')
-rw-r--r-- | gcc/config/i386/djgpp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 762178a7b48..7b05e6692ea 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -266,7 +266,8 @@ dtor_section () \ #define UNIQUE_SECTION(DECL,RELOC) \ do { \ int len; \ - char *name, *string, *prefix; \ + const char *name, *prefix; \ + char *string; \ \ name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \ \ |