Adjust test case for lexical block pruning. Follow-on to r104842 and Radar 7424645.
[oota-llvm.git] / test / FrontendC / 2003-07-22-ArrayAccessTypeSafety.c
1 /* RUN: %llvmgcc -xc %s -S -o - | grep -v alloca | not grep bitcast
2  */
3
4 void test(int* array, long long N) {
5     array[N] = N[array] = 33;
6 }
7