stage4/generate_iec/generate_iec.cc
changeset 311 8fcea60029de
parent 279 c0453b7f99df
child 350 2c3c4dc34979
equal deleted inserted replaced
310:f111a6986c22 311:8fcea60029de
  1528 void *visit(il_instruction_c *symbol) {
  1528 void *visit(il_instruction_c *symbol) {
  1529   if (symbol->label != NULL) {
  1529   if (symbol->label != NULL) {
  1530     symbol->label->accept(*this);
  1530     symbol->label->accept(*this);
  1531     s4o.print(": ");
  1531     s4o.print(": ");
  1532   }
  1532   }
  1533   symbol->il_instruction->accept(*this);
  1533   if (symbol->il_instruction != NULL) {
       
  1534     symbol->il_instruction->accept(*this);
       
  1535   }  
  1534   return NULL;
  1536   return NULL;
  1535 }
  1537 }
  1536 
  1538 
  1537 
  1539 
  1538 /* | il_simple_operator [il_operand] */
  1540 /* | il_simple_operator [il_operand] */