diff options
Diffstat (limited to 'test/CodeGenObjC/debug-info-foreach.m')
-rw-r--r-- | test/CodeGenObjC/debug-info-foreach.m | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGenObjC/debug-info-foreach.m b/test/CodeGenObjC/debug-info-foreach.m deleted file mode 100644 index 89b409c..0000000 --- a/test/CodeGenObjC/debug-info-foreach.m +++ /dev/null @@ -1,20 +0,0 @@ -// 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; - -int i; -void f(NSArray *a) { - id keys; - for (id thisKey in keys) { - int j = i; - ++j; - i = j; - } - for (id thisKey in keys) { - int k = i; - ++k; - i = k; - } -} |