Activity for FPGA C Compiler

  • Oliver Gantert Oliver Gantert posted a comment on ticket #11

    I found some more bugs. /******/ In fpgac.y, rule globalvarlistmember if(($1.v->type == TYPE_DEFINED) && ($1.v->type == TYPE_FLOAT)) becomes if(($1.v->type & TYPE_DEFINED) && ($1.v->type & TYPE_FLOAT)) /******/ To fix the while(){} construct: In fpgac.y, rule whileloop RIGHTPAREN stmt becomes RIGHTPAREN whilestmt Additional rule whilestmt: stmt | leftcurly declarations stmts rightcurly /******/ In syntax.l sscanf(... "%Li" ...); becomes "%llo" for octal "%llx" for hex /******/ In output_netlist.c,...

  • Oliver Gantert Oliver Gantert created ticket #11

    Missing return value

1
MongoDB Logo MongoDB