1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-07 11:33:44 +00:00
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;
}