summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenObjC/debug-info-foreach.m
blob: c056e0e249de5cfad29bf2a26fba1c9aaba65018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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) {
  }
}
OpenPOWER on IntegriCloud