Files
clang-p2996/compiler-rt/test/profile/Inputs/instrprof-dynamic-a.cpp
Vedant Kumar 5e3c5e8065 [test] Update coverage tests to sync up with r278152
This should fix the following bot failure:

  http://lab.llvm.org:8011/builders/clang-ppc64le-linux/builds/6522

Patch by Ying Yi!

llvm-svn: 278164
2016-08-09 21:04:22 +00:00

8 lines
371 B
C++

#include "instrprof-dynamic-header.h"
void a() { // COV: [[@LINE]]| 1|void a
if (true) { // COV: [[@LINE]]| 1| if
bar<void>(1); // COV: [[@LINE]]| 1| bar
bar<char>(1); // COV: [[@LINE]]| 1| bar
} // COV: [[@LINE]]| 1| }
}