Fix the clang-wpa example.
[clang.git] / test / CodeGenObjC / debug-info-foreach.m
blobc056e0e249de5cfad29bf2a26fba1c9aaba65018
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fobjc-default-synthesize-properties -emit-llvm -g %s -o %t 
2 // RUN: grep DW_TAG_lexical_block %t | count 5
3 // rdar://8757124
5 @class NSArray;
7 void f(NSArray *a) {
8   id keys;
9   for (id thisKey in keys) {
10   }
11   for (id thisKey in keys) {
12   }