aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.c
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2003-09-17 20:52:41 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2003-09-17 20:52:41 +0000
commit47aa0df47504bd7a24c0e5e3110e927233e4a96d (patch)
treeb548787b45299cc7b303a1196b1877191302b679 /gcc/langhooks.c
parent43892f8cea65404797f538f37a500ca62bf672c0 (diff)
downloadgcc-47aa0df47504bd7a24c0e5e3110e927233e4a96d.zip
gcc-47aa0df47504bd7a24c0e5e3110e927233e4a96d.tar.gz
gcc-47aa0df47504bd7a24c0e5e3110e927233e4a96d.tar.bz2
re PR debug/12066 (g++ generates stabs for "char *" that gdb cannot read)
PR debug/12066 * dbxout.c (dbxout_init): Use a langhook to find builtin types. * langhooks-def.h (lhd_return_null_tree_v): New function. (LANG_HOOKS_BUILTIN_TYPE_DECLS): New macro. (LANG_HOOKS_DECLS): Add it to the intializer. * langhooks.c (lhd_return_null_tree_v): New function. * langhooks.h (lang_hooks_for_decls): Add builtin_type_decls. PR debug/12066 * cp-lang.c (LANG_HOOKS_BUILTIN_TYPE_DECLS): Define. * cp-tree.h (cxx_builtin_type_decls): Declare. * decl.c (builtin_type_decls): New variables. (cxx_builtin_type_decls): New function. (record_builtin_type): Add to builtin_type_decls. From-SVN: r71478
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r--gcc/langhooks.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c
index 6c74ed2..a1d60f9 100644
--- a/gcc/langhooks.c
+++ b/gcc/langhooks.c
@@ -84,6 +84,14 @@ lhd_return_tree (tree t)
/* Do nothing (return NULL_TREE). */
tree
+lhd_return_null_tree_v (void)
+{
+ return NULL_TREE;
+}
+
+/* Do nothing (return NULL_TREE). */
+
+tree
lhd_return_null_tree (tree t ATTRIBUTE_UNUSED)
{
return NULL_TREE;