diff options
Diffstat (limited to 'clang/test/CodeGenObjC/debug-info-crash.m')
-rw-r--r-- | clang/test/CodeGenObjC/debug-info-crash.m | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/debug-info-crash.m b/clang/test/CodeGenObjC/debug-info-crash.m new file mode 100644 index 00000000000..011935c7674 --- /dev/null +++ b/clang/test/CodeGenObjC/debug-info-crash.m @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -triple i386-apple-darwin10 -fblocks -g -S %s -o - + +// rdar://7556129 +@implementation test +- (void)wait { + ^{}; +} +@end + |