aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-gperf.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-03-31 07:43:52 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-03-31 07:43:52 +0000
commit0728688f0e00c906a5c09d71bdcd088b1e5dd9e4 (patch)
treefd023e5c641ac84a1b4ede05b2b44a12707e3a49 /gcc/c-gperf.h
parentbaa5df30bbd1f2bca85e28f30aa5de27dcd1d7fa (diff)
downloadgcc-0728688f0e00c906a5c09d71bdcd088b1e5dd9e4.zip
gcc-0728688f0e00c906a5c09d71bdcd088b1e5dd9e4.tar.gz
gcc-0728688f0e00c906a5c09d71bdcd088b1e5dd9e4.tar.bz2
Makefile.in (c-gperf.h): Generate using gperf language 'C'...
* Makefile.in (c-gperf.h): Generate using gperf language 'C', not 'KR-C', so gperf uses the `const' keyword on strings. * c-parse.gperf (resword): Const-ify a char*. From-SVN: r26079
Diffstat (limited to 'gcc/c-gperf.h')
-rw-r--r--gcc/c-gperf.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/c-gperf.h b/gcc/c-gperf.h
index 7ee5060..0b79d11 100644
--- a/gcc/c-gperf.h
+++ b/gcc/c-gperf.h
@@ -1,7 +1,7 @@
-/* KR-C code produced by gperf version 2.7.1 (19981006 egcs) */
-/* Command-line: gperf -L KR-C -F , 0, 0 -p -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,$ ../../gcc/c-parse.gperf */
+/* C code produced by gperf version 2.7.1 (19981006 egcs) */
+/* Command-line: gperf -L C -F , 0, 0 -p -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,$ ./c-parse.gperf */
/* Command-line: gperf -L KR-C -F ', 0, 0' -p -j1 -i 1 -g -o -t -N is_reserved_word -k1,3,$ c-parse.gperf */
-struct resword { char *name; short token; enum rid rid; };
+struct resword { const char *name; short token; enum rid rid; };
#define TOTAL_KEYWORDS 83
#define MIN_WORD_LENGTH 2
@@ -15,7 +15,7 @@ __inline
#endif
static unsigned int
hash (str, len)
- register char *str;
+ register const char *str;
register unsigned int len;
{
static unsigned char asso_values[] =
@@ -177,7 +177,7 @@ __inline
#endif
struct resword *
is_reserved_word (str, len)
- register char *str;
+ register const char *str;
register unsigned int len;
{
if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
@@ -186,7 +186,7 @@ is_reserved_word (str, len)
if (key <= MAX_HASH_VALUE && key >= 0)
{
- register char *s = wordlist[key].name;
+ register const char *s = wordlist[key].name;
if (*str == *s && !strcmp (str + 1, s + 1))
return &wordlist[key];