llvm-6502/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr

8 lines
117 B
Plaintext
Raw Normal View History

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