diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-11-27 22:31:34 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-11-27 22:31:34 +0000 |
commit | 0abc6a6a4f074142719263a69355b702ac92f79b (patch) | |
tree | 3c52b3d011b38afeffe23926fc3afa478dd62aa8 /gcc/cpphash.c | |
parent | 9827f778db2e051f0803ef226ee3076fd7ef9d20 (diff) | |
download | gcc-0abc6a6a4f074142719263a69355b702ac92f79b.zip gcc-0abc6a6a4f074142719263a69355b702ac92f79b.tar.gz gcc-0abc6a6a4f074142719263a69355b702ac92f79b.tar.bz2 |
cpphash.c (_cpp_init_hashtable): Update.
* cpphash.c (_cpp_init_hashtable): Update.
* cpphash.h (struct spec_nodes): Remove n_L.
* cpplex.c (_cpp_lex_direct): Check for prefix L separately.
* Makefile.in: Update, and add c-objc-common.o dependencies.
* c-lang.c: Remove unnecessary includes.
(c_init): Move bulk of code to c_objc_common_init, and call it.
(c_tree_printer, c_missing_noreturn_ok_p, c_disregard_inline_limits,
inline_forbidden_p, c_cannot_inline_tree_fn): Move to
c-objc-common.c.
* c-objc-common.c: New. Mostly pulled from c-lang.c.
* c-tree.h (c_disregard_inline_limits, c_cannot_inline_fn,
c_objc_common_init, c_missing_noreturn_ok_p): New.
* toplev.c: Update comment.
* doc/passes.texi: Update.
* objc/ojbc-act.c (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN,
LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS,
LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Override.
(objc_init): Update to use c_objc_common_init.
From-SVN: r47388
Diffstat (limited to 'gcc/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index 1bb1275..39a3de7 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -71,7 +71,6 @@ _cpp_init_hashtable (pfile, table) _cpp_init_internal_pragmas (pfile); s = &pfile->spec_nodes; - s->n_L = cpp_lookup (pfile, DSC("L")); s->n_defined = cpp_lookup (pfile, DSC("defined")); s->n_true = cpp_lookup (pfile, DSC("true")); s->n_false = cpp_lookup (pfile, DSC("false")); |