From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- pkg/utilities/nttools/stxtools/vexfree.x | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkg/utilities/nttools/stxtools/vexfree.x (limited to 'pkg/utilities/nttools/stxtools/vexfree.x') diff --git a/pkg/utilities/nttools/stxtools/vexfree.x b/pkg/utilities/nttools/stxtools/vexfree.x new file mode 100644 index 00000000..f98bee57 --- /dev/null +++ b/pkg/utilities/nttools/stxtools/vexfree.x @@ -0,0 +1,22 @@ +include "vex.h" + +# VEX_FREE -- Free the pseudocode structure +# +# This procedure frees the structure created by vex_compile() and evaluated +# by vex_eval() +# +# B.Simon 21-May-90 Original +# B.Simon 19-Apr-91 Revised to handle multiple types + +procedure vex_free (code) + +pointer code # i: Pointer to pseudocode structure +#-- + +begin + call stk_free (VEX_STACK(code)) + + call mfree (VEX_CODE(code), TY_INT) + call mfree (code, TY_STRUCT) +end + -- cgit