diff options
Diffstat (limited to 'test/CodeGenObjC/debug-info-foreach.m')
-rw-r--r-- | test/CodeGenObjC/debug-info-foreach.m | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGenObjC/debug-info-foreach.m b/test/CodeGenObjC/debug-info-foreach.m new file mode 100644 index 0000000..c056e0e --- /dev/null +++ b/test/CodeGenObjC/debug-info-foreach.m @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fobjc-default-synthesize-properties -emit-llvm -g %s -o %t +// RUN: grep DW_TAG_lexical_block %t | count 5 +// rdar://8757124 + +@class NSArray; + +void f(NSArray *a) { + id keys; + for (id thisKey in keys) { + } + for (id thisKey in keys) { + } +} |