blob: 568f9b1e4b5d60d16d6c6531724a42aa1bc146da [file] [log] [blame]
John McCall93be3f72011-02-07 18:37:40 +00001// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
2
3namespace test0 {
4 // CHECK: define void @_ZN5test04testEi(
5 // CHECK: define internal void @__test_block_invoke_{{.*}}(
6 // CHECK: define internal void @__block_global_{{.*}}(
7 void test(int x) {
8 ^{ ^{ (void) x; }; };
9 }
10}