From: Richard Stallman Date: Sun, 19 Sep 1993 19:07:16 +0000 (+0000) Subject: (rtx_free): New function. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b404774e7b588cf665f17777dc7ed6b704981e7;p=gcc.git (rtx_free): New function. From-SVN: r5366 --- diff --git a/gcc/rtl.c b/gcc/rtl.c index ac1979fc51d..66effae8cee 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -246,6 +246,15 @@ rtx_alloc (code) return rt; } + +/* Free the rtx X and all RTL allocated since X. */ + +void +rtx_free (x) + rtx x; +{ + obstack_free (rtl_obstack, x); +} /* Create a new copy of an rtx. Recursively copies the operands of the rtx,