• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -triple x86_64-apple-darwin -fobjc-runtime=macosx-10.10.0 -fblocks -fobjc-arc %s | FileCheck %s
2
3@interface Foo
4@end
5#define Bar Foo
6
7@implementation Blah
8// CHECK-LABEL: +[Blah load]:
9+ load { // CHECK: File 0, [[@LINE]]:8 -> [[END:[0-9:]+]] = #0
10  return 0;
11  // CHECK: Expansion,File 0, [[@LINE+1]]:3 -> [[@LINE+1]]:6 = 0
12  Bar *attribute; // CHECK: File 0, [[@LINE]]:6 -> [[END]] = 0
13}
14@end
15
16int main() {}
17