diff options
author | Neil Booth <neilb@earthling.net> | 2000-08-18 17:35:58 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-08-18 17:35:58 +0000 |
commit | 61d0346df824fbdb9f290a8e42c87025bfd03783 (patch) | |
tree | f25ad3759703df13e0d6b40b621ea7e6d2e1dd18 /gcc/cpphash.h | |
parent | 90d14f40a9c1d85bee827d94ce8f9bab8acb192c (diff) | |
download | gcc-61d0346df824fbdb9f290a8e42c87025bfd03783.tar.gz |
cpphash.h: Use HAVE_DESIGNATED_INITIALIZERS.
* cpphash.h: Use HAVE_DESIGNATED_INITIALIZERS.
(_cpp_trigraph_map): Declaration moved from cpplex.c
* cppinit.c: Define _cpp_trigraph_map. Use UCHAR_MAX + 1
instead of 256. Use consistent test for designated initializers.
(cpp_init): Initialize trigraph_map.
(initialize_standard_includes, parse_option): Use memcmp
instead of strncmp.
* cpplex.c (init_trigraph_map): Remove.
(trigraph_ok, trigraph_replace, lex_line): Refer to
_cpp_trigraph_map.
* cpplib.c (str_match, WARNING, ERROR, ICE): Delete.
(do_unassert): Remove unused "next" local.
* system.h (HAVE_DESIGNATED_INITIALIZERS): New prototype.
From-SVN: r35789
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index c5b024427ec..b2f5c1dd619 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -165,13 +165,15 @@ struct spec_nodes #define is_nvspace(x) ((_cpp_IStable[x] & (ISspace | ISvspace)) == ISspace) #define is_space(x) (_cpp_IStable[x] & ISspace) -/* This table is constant if it can be initialized at compile time, +/* These tables are constant if they can be initialized at compile time, which is the case if cpp was compiled with GCC >=2.7, or another compiler that supports C99. */ -#if (GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L) -extern const unsigned char _cpp_IStable[256]; +#if HAVE_DESIGNATED_INITIALIZERS +extern const unsigned char _cpp_IStable[UCHAR_MAX + 1]; +extern const unsigned char _cpp_trigraph_map[UCHAR_MAX + 1]; #else -extern unsigned char _cpp_IStable[256]; +extern unsigned char _cpp_IStable[UCHAR_MAX + 1]; +extern unsigned char _cpp_trigraph_map[UCHAR_MAX + 1]; #endif /* Macros. */ |