summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/debug-info-vla.c
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-05-08 18:56:47 +0000
committerEric Christopher <echristo@apple.com>2012-05-08 18:56:47 +0000
commita135f2ca67172940dd1dd9414f17b9397e4517ef (patch)
tree7d43eae68f5471d3f6156f6e4f27d32a21489477 /test/CodeGen/debug-info-vla.c
parent3a89bfbeedcc4ae0226d591cfdfd26615556e148 (diff)
The address of a vla is actually complex and requires a dereference.
Part of rdar://11352000 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/debug-info-vla.c')
-rw-r--r--test/CodeGen/debug-info-vla.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/debug-info-vla.c b/test/CodeGen/debug-info-vla.c
new file mode 100644
index 0000000000..20fb6aace4
--- /dev/null
+++ b/test/CodeGen/debug-info-vla.c
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin %s -o - | FileCheck %s
+
+// CHECK: metadata !{i32 {{.*}}, metadata {{.*}}, metadata !"vla", metadata {{.*}}, i32 7, metadata {{.*}}, i32 0, i32 0, i64 2} ; [ DW_TAG_auto_variable ]
+
+void testVLAwithSize(int s)
+{
+ int vla[s];
+ int i;
+ for (i = 0; i < s; i++) {
+ vla[i] = i*i;
+ }
+}