diff options
author | Ziemowit Laski <zlaski@apple.com> | 2004-03-24 00:13:33 +0000 |
---|---|---|
committer | Ziemowit Laski <zlaski@gcc.gnu.org> | 2004-03-24 00:13:33 +0000 |
commit | f18eca824c676b77605701ef51abb0bdd21af682 (patch) | |
tree | 464ae69af9cebafde05fda4901ca79e0259b4ee9 /gcc/hooks.h | |
parent | 1b1d85bda3f05c960b5e0d3cdc2676d96a91b80b (diff) | |
download | gcc-f18eca824c676b77605701ef51abb0bdd21af682.tar.gz |
hooks.c (hook_constcharptr_tree_null): New hook.
[gcc/ChangeLog]
2004-03-23 Ziemowit Laski <zlaski@apple.com>
* hooks.c (hook_constcharptr_tree_null): New hook.
* hooks.h (hook_constcharptr_tree_null): New prototype.
* target-def.h (TARGET_MANGLE_FUNDAMENTAL_TYPE): New target hook.
* target.h (mangle_fundamental_type): New target hook.
* config/rs6000/rs6000.c (TARGET_MANGLE_FUNDAMENTAL_TYPE): Point
target hook at rs6000_mangle_fundamental_type.
(rs6000_mangle_fundamental_type): New function.
* doc/tm.texi (TARGET_MANGLE_FUNDAMENTAL_TYPE): Document.
[gcc/cp/ChangeLog]
2004-03-23 Ziemowit Laski <zlaski@apple.com>
* Make-lang.in (cp/mangle.o): Depend on $(TARGET_H).
* mangle.c (write_type): Add call to 'mangle_fundamental_type'
target hook.
[gcc/testsuite/ChangeLog]
2004-03-23 Ziemowit Laski <zlaski@apple.com>
* g++.dg/ext/altivec-7.C: New test.
From-SVN: r79885
Diffstat (limited to 'gcc/hooks.h')
-rw-r--r-- | gcc/hooks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hooks.h b/gcc/hooks.h index 824683b4cf4..aab83a81620 100644 --- a/gcc/hooks.h +++ b/gcc/hooks.h @@ -58,5 +58,5 @@ extern rtx hook_rtx_rtx_identity (rtx); extern rtx hook_rtx_rtx_null (rtx); extern rtx hook_rtx_tree_int_null (tree, int); extern tree hook_tree_tree_identity (tree a); - +extern const char *hook_constcharptr_tree_null (tree); #endif |