tree.c (copy_node): Oops.

* tree.c (copy_node): Oops.  That would be copy not zero
        in that last change.

From-SVN: r24603
This commit is contained in:
Richard Henderson 1999-01-09 12:05:18 -08:00 committed by Richard Henderson
parent 1f5080161b
commit c2c41b7eac
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Sat Jan 9 20:04:24 1999 Richard Henderson <rth@cygnus.com>
* tree.c (copy_node): Oops. That would be copy not zero
in that last change.
Sun Jan 10 15:35:41 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.c: Include system.h.

View File

@ -1181,7 +1181,7 @@ copy_node (node)
}
t = (tree) obstack_alloc (current_obstack, length);
bzero (t, length);
memcpy (t, node, length);
/* EXPR_WITH_FILE_LOCATION must keep filename info stored in TREE_CHAIN */
if (TREE_CODE (node) != EXPR_WITH_FILE_LOCATION)