Commit 9b404774 by Richard Stallman

(rtx_free): New function.

From-SVN: r5366
parent 7f98eeb6
......@@ -247,6 +247,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,
except for those few rtx codes that are sharable. */
......
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