aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-11-03-AddrArrayElement.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2003-11-03-AddrArrayElement.c')
-rw-r--r--test/CodeGen/2003-11-03-AddrArrayElement.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/2003-11-03-AddrArrayElement.c b/test/CodeGen/2003-11-03-AddrArrayElement.c
new file mode 100644
index 000000000000..50e81d6fd86a
--- /dev/null
+++ b/test/CodeGen/2003-11-03-AddrArrayElement.c
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
+
+// 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) {
+ // CHECK: getelementptr
+ return &Global[i];
+}