]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/CodeGen/2003-07-22-ArrayAccessTypeSafety.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / 2003-07-22-ArrayAccessTypeSafety.c
1 /* RUN: %clang_cc1 %s -emit-llvm -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