summaryrefslogtreecommitdiff
path: root/clang/test/CoverageMapping/nestedclass.cpp
AgeCommit message (Collapse)Author
2020-09-21[Coverage] Add empty line regions to SkippedRegionsZequan Wu
Differential Revision: https://reviews.llvm.org/D84988
2016-02-04[PGO] cc1 option name change for profile instrumentationRong Xu
This patch changes cc1 option -fprofile-instr-generate to an enum option -fprofile-instrument={clang|none}. It also changes cc1 options -fprofile-instr-generate= to -fprofile-instrument-path=. The driver level option -fprofile-instr-generate and -fprofile-instr-generate= remain intact. This change will pave the way to integrate new PGO instrumentation in IR level. Review: http://reviews.llvm.org/D16730 llvm-svn: 259811
2015-02-03InstrProf: Remove CoverageMapping::HasCodeBefore, it isn't usedJustin Bogner
llvm-svn: 228035
2014-08-20Test: CoverageMapping: use "RUN: FileCheck" command instead of "RUN: cat | ↵Alex Lorenz
Filecheck". Change the lit RUN commands for 3 tests to use the following pattern "FileCheck -input-file ..." instead of "cat ... | FileCheck ..." as suggested by Justin Bogner. llvm-svn: 216085
2014-08-19Add tests for coverage mapping generation.Alex Lorenz
This patch adds the tests for the coverage mapping generation. Most of the tests check the mapping regions produced by the generator, and one checks the llvm IR. Differential Revision: http://reviews.llvm.org/D4847 llvm-svn: 215995
2014-08-09Revert "Add tests for coverage mapping generation."Justin Bogner
I reverted one of the added tests from r215261 in r215274, since it was failing on quite a few bots. It looks like this wasn't sufficient, as we're still getting failures on windows, like the following: http://bb.pgr.jp/builders/ninja-x64-msvc-RA-centos6/builds/5378 I'm reverting this entire commit so the bots aren't blocked on these failures. This reverts commit r215261. llvm-svn: 215278
2014-08-08Add tests for coverage mapping generation.Alex Lorenz
This patch adds the tests for the coverage mapping generation. Most of the tests check the mapping regions produced by the generator, and one checks the llvm IR. Differential Revision: http://reviews.llvm.org/D4793 llvm-svn: 215261