summaryrefslogtreecommitdiff
path: root/test/FrontendC/2003-11-03-AddrArrayElement.c
blob: 4337da7d1e43fe4f300c3dc3b5f0ca77bae27dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc -xc %s -S -o - | grep getelementptr

// This should be turned into a tasty getelementptr instruction, not a nasty
// series of casts and address arithmetic.

char Global[100];

char *test1(unsigned i) {
  return &Global[i];
}