17 lines · plain
1// RUN: %clang_cc1 -mllvm -emptyline-comment-coverage=false -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 -w %s | FileCheck %s2 3@interface Foo4@end5#define Bar Foo6 7@implementation Blah8// CHECK-LABEL: +[Blah load]:9+ load { // CHECK: File 0, [[@LINE]]:8 -> [[END:[0-9:]+]] = #010 return 0;11 // CHECK: Expansion,File 0, [[@LINE+1]]:3 -> [[@LINE+1]]:6 = 012 Bar *attribute; // CHECK: File 0, [[@LINE]]:6 -> [[END]] = 013}14@end15 16int main(void) {}17