Is bound checking supposed to be functional? Each of the following code
fragments result in bound-checking errors and seg faults when run with
tcc -b:

  int A[1];     
  A[0] = 0;

  int A[2] = {0,1};
  int sum = A[0] + A[1];

Using tcc-0.9.22-3bw rpm on Linux.


_______________________________________________
Tinycc-devel mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to