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