llvm-6502/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c
2008-05-21 14:48:24 +00:00

8 lines
143 B
C

/* RUN: %llvmgcc -xc %s -S -o - | grep -v alloca | not grep bitcast
*/
void test(int* array, long long N) {
array[N] = N[array] = 33;
}