stage4/generate_c/generate_c_inlinefcall.cc
changeset 1002 45bd3e90ecec
parent 1001 f6ed7dcfc53e
child 1003 64c9fe787f12
equal deleted inserted replaced
1001:f6ed7dcfc53e 1002:45bd3e90ecec
   290       s4o.print(",");
   290       s4o.print(",");
   291       wanted_variablegeneration = expression_vg;
   291       wanted_variablegeneration = expression_vg;
   292       print_check_function(type, value, NULL, true);
   292       print_check_function(type, value, NULL, true);
   293       s4o.print(")");
   293       s4o.print(")");
   294       wanted_variablegeneration = expression_vg;
   294       wanted_variablegeneration = expression_vg;
       
   295       return NULL;
       
   296     }
       
   297 
       
   298     /*************************/
       
   299     /* B.1 - Common elements */
       
   300     /*************************/
       
   301     /*******************************************/
       
   302     /* B 1.1 - Letters, digits and identifiers */
       
   303     /*******************************************/
       
   304     void *visit(identifier_c *symbol) {
       
   305       if (generating_inlinefunction) {
       
   306         return generate_c_base_c::visit(symbol); // let the base class handle it...
       
   307       }
   295       return NULL;
   308       return NULL;
   296     }
   309     }
   297 
   310 
   298     /*********************/
   311     /*********************/
   299     /* B 1.4 - Variables */
   312     /* B 1.4 - Variables */