foralex / picoc

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

*dest++ = *src++; doesn't work #28

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Test case 21_char_array.c results in:

zik@initech:~/work/picoc$ ./picoc tests/21_char_array.c 
hello
h: 104
e: 101
l: 108
l: 108
o: 111
tests/21_char_array.c:22: invalid operation

Line 22 is:
*dest++ = *src++;

Original issue reported on code.google.com by zik.sale...@gmail.com on 3 Jun 2009 at 1:25

GoogleCodeExporter commented 9 years ago
This turned out to be a problem in parsing while (). do..while() was affected 
by a
similar issue. Fixed in r329.

Original comment by zik.sale...@gmail.com on 4 Jun 2009 at 12:19