summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/instantiate-blocks.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2010-07-09 18:44:02 +0000
committerFariborz Jahanian <fjahanian@apple.com>2010-07-09 18:44:02 +0000
commita729da2c29e7df26319acf2675d51e377287a139 (patch)
tree30b30dd974b6cb972cb06ef3424f63c424ce62df /test/CodeGenCXX/instantiate-blocks.cpp
parent52ddc5df59a26570fbca47d269f82954ae3397d1 (diff)
Instantiation of block literal expressions. wip.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108000 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/instantiate-blocks.cpp')
-rw-r--r--test/CodeGenCXX/instantiate-blocks.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/CodeGenCXX/instantiate-blocks.cpp b/test/CodeGenCXX/instantiate-blocks.cpp
new file mode 100644
index 0000000000..8c1c8dd234
--- /dev/null
+++ b/test/CodeGenCXX/instantiate-blocks.cpp
@@ -0,0 +1,29 @@
+// RUN: %clang_cc1 -fblocks -emit-llvm -o - %s
+// rdar : // 6182276
+
+template <typename T> T foo(T t)
+{
+ void (^block)(int);
+ return 1;
+}
+
+int test1(void)
+{
+ int i = 1;
+ int b = 2;
+ i = foo(b);
+ return 0;
+}
+
+template <typename T, typename T1> void foo(T t, T1 r)
+{
+ T block_arg;
+ T1 (^block)(char, T, T1, double) = ^ T1 (char ch, T arg, T1 arg2, double d1) { return block_arg+arg; };
+
+ void (^block2)() = ^{};
+}
+
+void test2(void)
+{
+ foo(100, 'a');
+}