* rtl.c (rtx_alloc): Use memset instead of inline loop.

From-SVN: r24632
This commit is contained in:
Richard Henderson 1999-01-11 17:31:09 -08:00 committed by Richard Henderson
parent 08b8d8e518
commit d6c0e1c8d0
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Jan 12 01:30:19 1999 Richard Henderson <rth@cygnus.com>
* rtl.c (rtx_alloc): Use memset instead of inline loop.
Tue Jan 12 00:23:31 1999 Richard Henderson <rth@cygnus.com>
* function.c (purge_addressof_1): If the note accesses a mem+addressof

View File

@ -254,9 +254,7 @@ rtx_alloc (code)
one int, but we don't want to assume that and it isn't very portable
anyway; this is. */
length = (sizeof (struct rtx_def) - sizeof (rtunion) - 1) / sizeof (int);
for (; length >= 0; length--)
((int *) rt)[length] = 0;
memset (rt, 0, sizeof (struct rtx_def) - sizeof (rtunion));
PUT_CODE (rt, code);