Fix bug: do not print IL 'label' when generating inline functions (JMPxx label was generating erroneous C code)
--- a/stage4/generate_c/generate_c_inlinefcall.cc Sun Mar 02 16:42:56 2014 +0000
+++ b/stage4/generate_c/generate_c_inlinefcall.cc Sun Mar 02 17:04:17 2014 +0000
@@ -416,6 +416,11 @@
return NULL;
}
+ /* il_jump_operator label */
+ // SYM_REF2(il_jump_operation_c, il_jump_operator, label)
+ void *visit(il_jump_operation_c *symbol) {
+ return NULL;
+ }
void *visit(il_function_call_c *symbol) {
symbol_c* function_type_prefix = NULL;