Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / 2003-07-22-ArrayAccessTypeSafety.c
blobd0703ef5e914e33528db5061e84754747445edcd
1 /* RUN: %clang_cc1 %s -emit-llvm -o - | grep -v alloca | not grep bitcast
2 */
4 void test(int* array, long long N) {
5 array[N] = N[array] = 33;