From: Richard Kenner Date: Sat, 27 Jun 1992 11:10:21 +0000 (-0400) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5ebacaf567aba1e84fa7af9115feaeb30a62160;p=gcc.git *** empty log message *** From-SVN: r1308 --- diff --git a/gcc/tree.c b/gcc/tree.c index 5207ba1da02..a0ff3fefc1b 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -840,11 +840,7 @@ make_node (code) tree_node_sizes[(int)kind] += length; #endif - TREE_TYPE (t) = 0; - TREE_CHAIN (t) = 0; - for (i = (length / sizeof (int)) - 1; - i >= sizeof (struct tree_common) / sizeof (int) - 1; - i--) + for (i = (length / sizeof (int)) - 1; i >= 0; i--) ((int *) t)[i] = 0; TREE_SET_CODE (t, code);