Commit 9b404774 by Richard Stallman

(rtx_free): New function.

From-SVN: r5366
parent 7f98eeb6
...@@ -246,6 +246,15 @@ rtx_alloc (code) ...@@ -246,6 +246,15 @@ rtx_alloc (code)
return rt; 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. /* Create a new copy of an rtx.
Recursively copies the operands of the rtx, Recursively copies the operands of the rtx,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment