foralex / picoc

Automatically exported from code.google.com/p/picoc
0 stars 0 forks source link

l-values #129

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
PicoC does not support either non-ANSI C casting like this:

char *p;
((int *) p)++;

and the valid ANSI C version of above example:

char *p;
p = (char *)((int *) p+1);

Original issue reported on code.google.com by belli...@asiotec.org on 19 Feb 2011 at 9:33

GoogleCodeExporter commented 8 years ago
Thanks. I'll look into it.

Original comment by zik.sale...@gmail.com on 19 Feb 2011 at 10:26

GoogleCodeExporter commented 8 years ago

Original comment by zik.sale...@gmail.com on 19 Feb 2011 at 10:26

GoogleCodeExporter commented 8 years ago

Original comment by zik.sale...@gmail.com on 19 Feb 2011 at 10:27

GoogleCodeExporter commented 8 years ago
Fixed in r558.

Original comment by zik.sale...@gmail.com on 21 Feb 2011 at 12:57