Ignore pragmas inside IL code when handling inline function calls.
authormjsousa
Thu, 26 May 2016 17:59:01 +0100
changeset 1018 49c4edf76e63
parent 1017 3f12e23b253b
child 1019 1e3cefbbdee2
Ignore pragmas inside IL code when handling inline function calls.
stage4/generate_c/generate_c_inlinefcall.cc
--- a/stage4/generate_c/generate_c_inlinefcall.cc	Thu May 26 15:05:34 2016 +0100
+++ b/stage4/generate_c/generate_c_inlinefcall.cc	Thu May 26 17:59:01 2016 +0100
@@ -280,6 +280,15 @@
       return NULL;
     }
 
+    /********************/
+    /* 2.1.6 - Pragmas  */
+    /********************/
+    //SYM_REF0(disable_code_generation_pragma_c)
+    //SYM_REF0(enable_code_generation_pragma_c)
+    //SYM_TOKEN(pragma_c)
+    void *visit(pragma_c *symbol) {return NULL;}
+
+
     /*************************/
     /* B.1 - Common elements */
     /*************************/