diff runtime/rhopefuncs_epilog.c @ 186:ba35ab624ec2

Add support for raw C function output from C backend as well as an option to use Boehm-GC instead of reference counting
author Mike Pavone <pavone@retrodev.com>
date Fri, 07 Oct 2011 00:10:02 -0700
parents bac2c74801f0
children
line wrap: on
line diff
--- a/runtime/rhopefuncs_epilog.c	Wed Jul 27 21:32:40 2011 -0700
+++ b/runtime/rhopefuncs_epilog.c	Fri Oct 07 00:10:02 2011 -0700
@@ -1,4 +1,6 @@
-
+#ifdef RAW_FUNC
+DispatchVar
+#else
 DO_END:
 	for(idx = 0; idx < cdata->num_params; ++idx)	
 		params[idx] = cdata->params[idx];
@@ -36,4 +38,5 @@
 	}
 	return -1;
 }
+#endif //RAW_FUNC