diff options
author | dim <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
commit | c86b984ea8ecb3e944dc3de48539f4c1f65851ea (patch) | |
tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /test/CoverageMapping/nestedclass.cpp | |
parent | c696171ff15f0ee60dea4abfd99a135473c95656 (diff) | |
download | FreeBSD-src-c86b984ea8ecb3e944dc3de48539f4c1f65851ea.zip FreeBSD-src-c86b984ea8ecb3e944dc3de48539f4c1f65851ea.tar.gz |
Vendor import of clang RELEASE_360/rc1 tag r226102 (effectively, 3.6.0 RC1):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_360/rc1@226102
Diffstat (limited to 'test/CoverageMapping/nestedclass.cpp')
-rw-r--r-- | test/CoverageMapping/nestedclass.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/CoverageMapping/nestedclass.cpp b/test/CoverageMapping/nestedclass.cpp new file mode 100644 index 0000000..aca4abf --- /dev/null +++ b/test/CoverageMapping/nestedclass.cpp @@ -0,0 +1,28 @@ +// RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name nestedclass.cpp %s > %tmapping +// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-OUTER +// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-INNER +// RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-INNERMOST + +struct Test { // CHECK-OUTER: emitTest + void emitTest() { // CHECK-OUTER: File 0, [[@LINE]]:19 -> [[@LINE+2]]:4 = #0 (HasCodeBefore = 0) + int i = 0; + } + struct Test2 { // CHECK-INNER: emitTest2 + void emitTest2() { // CHECK-INNER: File 0, [[@LINE]]:22 -> [[@LINE+2]]:6 = #0 (HasCodeBefore = 0) + int i = 0; + } + struct Test3 { // CHECK-INNERMOST: emitTest3 + static void emitTest3() { // CHECK-INNERMOST: File 0, [[@LINE]]:31 -> [[@LINE+2]]:8 = 0 (HasCodeBefore = 0) + int i = 0; + } + }; + }; +}; + +int main() { + Test t; + Test::Test2 t2; + t.emitTest(); + t2.emitTest2(); + return 0; +} |