llvm-6502/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr
2003-11-06 21:13:45 +00:00

8 lines
129 B
Plaintext

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