Mercurial > hg > CbC > old > device
view test/tmp2.c @ 935:7672a37e7545 default tip
Raspbery PI ARM support begin
author | kono |
---|---|
date | Sat, 24 Dec 2016 03:02:57 +0000 |
parents | c2c709727221 |
children |
line wrap: on
line source
#define __environment _CbC_environment #define __return _CbC_return #include "stdio.h" int main(ac,av) int ac; char *av[]; { int i; i=main0(ac,av); fprintf(stdout,"#0012:1: %s %d\n",av[0],i); return 0; } int main0(ac,av) int ac; char *av[]; { fprintf(stdout,"#0021:2: %s\n",av[0]); goto code0(av,__return,__environment); } __code code0(av,ret,retenv) char *av[]; __code (*ret)(); void *retenv; { char *p; p = av[0]; fprintf(stdout,"#0032:3: %s\n",p); goto code1(av,ret,retenv); } __code code1(av,ret,retenv) char *av[]; __code (*ret)(); void *retenv; { fprintf(stdout,"#0041:4: %s\n",av[0]); goto (*ret)(1234,retenv); }