diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-27 04:54:34 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-27 04:54:34 +0000 |
commit | f3f1204b5bad7c3dfff8f2150256ec008b4b0d33 (patch) | |
tree | e26d7625ca198aca789e2bf270f1e03914e6b284 /gcc/config/i386/djgpp.h | |
parent | 9660ee13ce7d19078ef39c95639bb5da39c4fbdc (diff) | |
download | gcc-f3f1204b5bad7c3dfff8f2150256ec008b4b0d33.tar.gz |
* config/i386/djgpp.h (UNIQUE_SECTION): Constify the variables
name and prefix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36651 138bc75d-0d04-0410-961f-82ee72b054a4
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)); \ \ |