aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/cxx2a-init-statement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/cxx2a-init-statement.cpp')
-rw-r--r--test/CodeGenCXX/cxx2a-init-statement.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGenCXX/cxx2a-init-statement.cpp b/test/CodeGenCXX/cxx2a-init-statement.cpp
new file mode 100644
index 000000000000..2d45c8554451
--- /dev/null
+++ b/test/CodeGenCXX/cxx2a-init-statement.cpp
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 -std=c++2a -triple x86_64-apple-macosx10.7.0 -emit-llvm -o - %s -w | FileCheck %s
+
+// CHECK: @__const._Z1fv.arr = private unnamed_addr constant [3 x i32] [i32 1, i32 2, i32 3], align 4
+
+void f() {
+ // CHECK: %[[ARR:.*]] = alloca [3 x i32], align 4
+ // CHECK: call void @llvm.memcpy{{.*}}({{.*}} @__const._Z1fv.arr
+ for (int arr[3] = {1, 2, 3}; int a : arr)
+ ;
+}