diff options
author | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
commit | 3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65 (patch) | |
tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /test/CoverageMapping/header.cpp | |
parent | 38d6f2e7f2ce51a5b3836d26596c6c34a3288752 (diff) | |
download | FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.zip FreeBSD-src-3191b2b32a96e1a6ee833fcca73e5c8e0c67ba65.tar.gz |
Vendor import of clang trunk r238337:
https://llvm.org/svn/llvm-project/cfe/trunk@238337
Diffstat (limited to 'test/CoverageMapping/header.cpp')
-rw-r--r-- | test/CoverageMapping/header.cpp | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/test/CoverageMapping/header.cpp b/test/CoverageMapping/header.cpp index c268191..e495d5a 100644 --- a/test/CoverageMapping/header.cpp +++ b/test/CoverageMapping/header.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name tu1.cpp %s > %tmapping +// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name header.cpp %s > %tmapping // RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-FUNC // RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-STATIC-FUNC // RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-STATIC-FUNC2 @@ -11,17 +11,14 @@ int main() { } // CHECK-FUNC: func -// CHECK-FUNC: File 0, 4:25 -> 11:2 = #0 (HasCodeBefore = 0) -// CHECK-FUNC: File 0, 6:15 -> 8:4 = #1 (HasCodeBefore = 0) -// CHECK-FUNC: File 0, 8:10 -> 10:4 = (#0 - #1) (HasCodeBefore = 0) -// CHECK-FUNC: Expansion,File 1, 6:10 -> 6:28 = #0 (HasCodeBefore = 0, Expanded file = 0) +// CHECK-FUNC: File 0, 4:25 -> 11:2 = #0 +// CHECK-FUNC: File 0, 6:15 -> 8:4 = #1 +// CHECK-FUNC: File 0, 8:10 -> 10:4 = (#0 - #1) // CHECK-STATIC-FUNC: static_func -// CHECK-STATIC-FUNC: File 0, 12:32 -> 20:2 = #0 (HasCodeBefore = 0) -// CHECK-STATIC-FUNC: File 0, 14:15 -> 16:4 = #1 (HasCodeBefore = 0) -// CHECK-STATIC-FUNC: File 0, 16:10 -> 18:4 = (#0 - #1) (HasCodeBefore = 0) -// CHECK-STATIC-FUNC: Expansion,File 1, 6:10 -> 6:28 = #0 (HasCodeBefore = 0, Expanded file = 0) +// CHECK-STATIC-FUNC: File 0, 12:32 -> 20:2 = #0 +// CHECK-STATIC-FUNC: File 0, 14:15 -> 16:4 = #1 +// CHECK-STATIC-FUNC: File 0, 16:10 -> 18:4 = (#0 - #1) // CHECK-STATIC-FUNC2: static_func2 -// CHECK-STATIC-FUNC2: File 0, 21:33 -> 29:2 = 0 (HasCodeBefore = 0) -// CHECK-STATIC-FUNC2: Expansion,File 1, 6:10 -> 6:28 = 0 (HasCodeBefore = 0, Expanded file = 0) +// CHECK-STATIC-FUNC2: File 0, 21:33 -> 29:2 = 0 |