blob: 50e81d6fd86a25aeccb6757019456c3459b0db11 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3// This should be turned into a tasty getelementptr instruction, not a nasty
4// series of casts and address arithmetic.
5
6char Global[100];
7
8char *test1(unsigned i) {
9 // CHECK: getelementptr
10 return &Global[i];
11}