Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / 2003-11-03-AddrArrayElement.c
blob50e81d6fd86a25aeccb6757019456c3459b0db11
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
3 // This should be turned into a tasty getelementptr instruction, not a nasty
4 // series of casts and address arithmetic.
6 char Global[100];
8 char *test1(unsigned i) {
9 // CHECK: getelementptr
10 return &Global[i];