* tree.c (lang_unsave_expr_now) : Correct return type.
* tree.h (lang_unsave_expr_now) : Same.
For gcc/cp:
* cp-tree.h (cplus_unsave_expr_now) : Correct return type.
* tree.h (cplus_unsave_expr_now) : Same.
From-SVN: r28906
+Thu Aug 26 16:10:56 1999 Gavin Romig-Koch <gavin@cygnus.com>
+
+ * tree.c (lang_unsave_expr_now) : Correct return type.
+ * tree.h (lang_unsave_expr_now) : Same.
+
Thu Aug 26 13:12:29 1999 Jeffrey A Law (law@cygnus.com)
* pa.c (cint_ok_for_move): Use CONST_INT_OK_FOR_LETTER_P macros
+1999-08-26 Gavin Romig-Koch <gavin@cygnus.com>
+
+ * cp-tree.h (cplus_unsave_expr_now) : Correct return type.
+ * tree.h (cplus_unsave_expr_now) : Same.
+
1999-08-25 Mark Mitchell <mark@codesourcery.com>
* decl.c (grokdeclarator): Amend comment.
/* in tree.c */
extern void init_cplus_unsave PROTO((void));
-extern tree cplus_unsave_expr_now PROTO((tree));
+extern void cplus_unsave_expr_now PROTO((tree));
extern int pod_type_p PROTO((tree));
extern void unshare_base_binfos PROTO((tree));
extern int member_p PROTO((tree));
/* The C++ version of unsave_expr_now.
See gcc/tree.c:unsave_expr_now for comments. */
-tree
+void
cplus_unsave_expr_now (expr)
tree expr;
{
/* If non-null, a language specific helper for unsave_expr_now. */
-int (*lang_unsave_expr_now) PROTO((tree));
+void (*lang_unsave_expr_now) PROTO((tree));
\f
/* Init the principal obstacks. */
/* If non-null, a language specific helper for unsave_expr_now. */
-extern int (*lang_unsave_expr_now) PROTO((tree));
+extern void (*lang_unsave_expr_now) PROTO((tree));
/* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
or offset that depends on a field within a record.