mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 05:18:57 +08:00
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:
parent
1f5080161b
commit
c2c41b7eac
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user