Fix bug: do not print IL 'label' when generating inline functions (JMPxx label was generating erroneous C code)
authormjsousa
Sun, 02 Mar 2014 17:04:17 +0000
changeset 874 b8fa360b376d
parent 873 dea39ef02847
child 875 4e7f95fab6d7
Fix bug: do not print IL 'label' when generating inline functions (JMPxx label was generating erroneous C code)
stage4/generate_c/generate_c_inlinefcall.cc
--- 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;