tree.h: Declare them.
authorJason Merrill <jason@yorick.cygnus.com>
Tue, 14 Oct 1997 18:52:33 +0000 (18:52 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 14 Oct 1997 18:52:33 +0000 (14:52 -0400)
* tree.h: Declare them.

Oop.

From-SVN: r15899

gcc/ChangeLog
gcc/tree.h

index 5b9bdbb414bb49f1d1ba8c393827405a6218a87c..51f65b0cc655ba01b28f704a42f38d4235455179 100644 (file)
@@ -1,6 +1,7 @@
 Tue Oct 14 11:30:29 1997  Jason Merrill  <jason@yorick.cygnus.com>
 
        * tree.c (expr_tree_cons, build_expr_list, expralloc): New fns.
+       * tree.h: Declare them.
 
 Fri Oct 10 13:46:56 1997  Doug Evans  <dje@canuck.cygnus.com>
 
index afa61656338032bd1826e899b0760d5a8c8821d9..d60f0bc7dc22180408ebaea0c567d4edfa620892 100644 (file)
@@ -1228,6 +1228,7 @@ extern char *xstrdup                      PROTO((char *));
 extern char *oballoc                   PROTO((int));
 extern char *permalloc                 PROTO((int));
 extern char *savealloc                 PROTO((int));
+extern char *expralloc                 PROTO((int));
 
 /* Lowest level primitive for allocating a node.
    The TREE_CODE is the only argument.  Contents are initialized
@@ -1277,6 +1278,7 @@ extern tree build_string          PROTO((int, char *));
 extern tree build1                     PROTO((enum tree_code, tree, tree));
 extern tree build_tree_list            PROTO((tree, tree));
 extern tree build_decl_list            PROTO((tree, tree));
+extern tree build_expr_list            PROTO((tree, tree));
 extern tree build_decl                 PROTO((enum tree_code, tree, tree));
 extern tree build_block                        PROTO((tree, tree, tree, tree, tree));
 
@@ -1415,6 +1417,7 @@ extern tree perm_tree_cons                PROTO((tree, tree, tree));
 extern tree temp_tree_cons             PROTO((tree, tree, tree));
 extern tree saveable_tree_cons         PROTO((tree, tree, tree));
 extern tree decl_tree_cons             PROTO((tree, tree, tree));
+extern tree expr_tree_cons             PROTO((tree, tree, tree));
 
 /* Return the last tree node in a chain.  */