diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2002-05-04 20:15:00 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-05-04 20:15:00 +0000 |
commit | 3d90d2908e9a7ae8fbad9f248bb5517e74139e3b (patch) | |
tree | a2449890a6a273739539cb635907054553cde2bb /gcc/tree.c | |
parent | 625458d0b97e2665f53f56832778214e7e7ae6b6 (diff) | |
download | gcc-3d90d2908e9a7ae8fbad9f248bb5517e74139e3b.zip gcc-3d90d2908e9a7ae8fbad9f248bb5517e74139e3b.tar.gz gcc-3d90d2908e9a7ae8fbad9f248bb5517e74139e3b.tar.bz2 |
Makefile.in (c-lex.o): Update.
* Makefile.in (c-lex.o): Update.
* c-lex.c: Include target.h.
(cb_register_builtins): New.
(init_c_lex): Set builtins callback.
* c-lex.h (cpp_define, cpp_assert): New prototypes.
* cppinit.c (init_builtins): Use callback, including for
GXX_WEAK.
* cpplib.h (struct cpp_callbacks): New member.
* target-def.h (TARGET_REGISTER_CPP_BUILTINS): New.
(TARGET_INITIALIZER): Update.
* target.h (struct gcc_target): New hook.
* tree.c (default_register_cpp_builtins): New.
* tree.h (default_register_cpp_builtins): New.
doc:
* tm.texi (TARGET_REGISTER_CPP_BUILTINS): Document.
From-SVN: r53165
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2543,6 +2543,13 @@ build_type_attribute_variant (ttype, attribute) return ttype; } +/* Default registration of target-specific CPP built-ins. */ +void +default_register_cpp_builtins (pfile) + struct cpp_reader *pfile ATTRIBUTE_UNUSED; +{ +} + /* Default value of targetm.comp_type_attributes that always returns 1. */ int |