New testcase for PR269
[oota-llvm.git] / test / CFrontend / 2003-07-22-ArrayAccessTypeSafety.c.tr
1 /* RUN: %llvmgcc -xc %s -c -o - | dis | not grep cast
2  */
3
4 void test(int* array, long long N) {
5     array[N] = N[array] = 33;
6 }
7