aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/block-inalloca.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/block-inalloca.cpp')
-rw-r--r--test/CodeGenCXX/block-inalloca.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGenCXX/block-inalloca.cpp b/test/CodeGenCXX/block-inalloca.cpp
new file mode 100644
index 000000000000..b827dde7abdc
--- /dev/null
+++ b/test/CodeGenCXX/block-inalloca.cpp
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 -triple i686-unknown-windows-msvc -fblocks -emit-llvm -o - %s | FileCheck %s
+
+struct S {
+ S(const struct S &) {}
+};
+
+void (^b)(S) = ^(S) {};
+
+// CHECK: [[DESCRIPTOR:%.*]] = getelementptr inbounds <{ i8*, %struct.S, [3 x i8] }>, <{ i8*, %struct.S, [3 x i8] }>* %0, i32 0, i32 0
+// CHECK: load i8*, i8** [[DESCRIPTOR]]
+