Hey JCL,
it seems like the approach to ("-->") operator is broken in the latest A8 version, is it possible to get that fixed in the next update? Test case:
#include <acknex.h>
void main()
{
int i = 10;
while(i --> 0)
{
printf("%i", i);
}
}
According to the C standard, I would expect an output of "9, 8, 7, 6, 5, 4, 3, 2, 1, 0", but the 0 is never printed.