diff options
Diffstat (limited to 'test/CodeGenObjC/debug-info-nested-blocks.m')
-rw-r--r-- | test/CodeGenObjC/debug-info-nested-blocks.m | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/CodeGenObjC/debug-info-nested-blocks.m b/test/CodeGenObjC/debug-info-nested-blocks.m new file mode 100644 index 0000000..5c5958c --- /dev/null +++ b/test/CodeGenObjC/debug-info-nested-blocks.m @@ -0,0 +1,26 @@ +// RUN: %clang_cc1 -emit-llvm -gdwarf-2 -fblocks -o - -x objective-c %s| FileCheck %s +// This code triggered a bug where a dbg.declare intrinsic ended up with the +// wrong parent and subsequently failed the Verifier. +void baz(id b); +void fub(id block); +int foo(void); +void bar(void) { + fub(^() { + id a; + id b = [a bar:^(int e){}]; + if (b) { + ^() { + if ((0 && foo()) ? 1 : 0) { + baz([a aMessage]); + } + }; + } + }); +} + +// Verify that debug info for BlockPointerDbgLoc is emitted for the +// innermost block. +// +// CHECK: define {{.*}}void @__bar_block_invoke_3(i8* %.block_descriptor) +// CHECK: %[[BLOCKADDR:.*]] = alloca <{{.*}}>*, align +// CHECK: call void @llvm.dbg.declare(metadata {{.*}}%[[BLOCKADDR]] |