summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ProfileData
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2017-09-09 06:19:53 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2017-09-09 06:19:53 +0000
commit779b544fa91c41ad2561b1e9c1fd808bd4f61816 (patch)
tree1ea90aca252904f25a286e047dc4b7166fae20aa /llvm/unittests/ProfileData
parentfd5960a6539efc42e1930c58d4e291b9cabf1722 (diff)
downloadbcm5719-llvm-779b544fa91c41ad2561b1e9c1fd808bd4f61816.tar.gz
bcm5719-llvm-779b544fa91c41ad2561b1e9c1fd808bd4f61816.zip
CoverageMappingTest.cpp: Suppress warnings. [-Wdocumentation]
llvm-svn: 312861
Diffstat (limited to 'llvm/unittests/ProfileData')
-rw-r--r--llvm/unittests/ProfileData/CoverageMappingTest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/unittests/ProfileData/CoverageMappingTest.cpp b/llvm/unittests/ProfileData/CoverageMappingTest.cpp
index f5c2bd78fe5..8c9c8c48234 100644
--- a/llvm/unittests/ProfileData/CoverageMappingTest.cpp
+++ b/llvm/unittests/ProfileData/CoverageMappingTest.cpp
@@ -418,12 +418,12 @@ TEST_P(CoverageMappingTest, multiple_regions_end_after_parent_ends) {
// 7| c} d{ e{
// 8|
// 9| d} e} F}
- addCMR(Counter::getCounter(0), "file1", 1, 1, 9, 9); //< F
- addCMR(Counter::getCounter(0), "file1", 1, 1, 3, 5); //< a
- addCMR(Counter::getCounter(0), "file1", 3, 5, 5, 4); //< b
- addCMR(Counter::getCounter(1), "file1", 3, 5, 7, 3); //< c
- addCMR(Counter::getCounter(1), "file1", 7, 3, 9, 2); //< d
- addCMR(Counter::getCounter(1), "file1", 7, 7, 9, 7); //< e
+ addCMR(Counter::getCounter(0), "file1", 1, 1, 9, 9); // < F
+ addCMR(Counter::getCounter(0), "file1", 1, 1, 3, 5); // < a
+ addCMR(Counter::getCounter(0), "file1", 3, 5, 5, 4); // < b
+ addCMR(Counter::getCounter(1), "file1", 3, 5, 7, 3); // < c
+ addCMR(Counter::getCounter(1), "file1", 7, 3, 9, 2); // < d
+ addCMR(Counter::getCounter(1), "file1", 7, 7, 9, 7); // < e
EXPECT_THAT_ERROR(loadCoverageMapping(), Succeeded());
const auto FunctionRecords = LoadedCoverage->getCoveredFunctions();
OpenPOWER on IntegriCloud