This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
7edff47899
llvm-project
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-dynamic-b.cpp
8 lines
104 B
C++
Raw
Normal View
History
Unescape
Escape
InstrProf: Fix shared object profiling Change the API of the instrumented profiling library to work with shared objects. - Most things are now declared hidden, so that each executable gets its own copy. - Initialization hooks up a linked list of writers. - The raw format with shared objects that are profiled consists of a concatenated series of profiles. llvm-profdata knows how to deal with that since r208938. <rdar://problem/16918688> llvm-svn: 208940
2014-05-16 09:30:24 +08:00
#
include
"instrprof-dynamic-header.h"
void
b
(
)
{
if
(
true
)
{
profile: Fix link errors in this test on darwin llvm-svn: 238622
2015-05-30 06:41:25 +08:00
bar
<
void
>
(
1
)
;
bar
<
int
>
(
1
)
;
InstrProf: Fix shared object profiling Change the API of the instrumented profiling library to work with shared objects. - Most things are now declared hidden, so that each executable gets its own copy. - Initialization hooks up a linked list of writers. - The raw format with shared objects that are profiled consists of a concatenated series of profiles. llvm-profdata knows how to deal with that since r208938. <rdar://problem/16918688> llvm-svn: 208940
2014-05-16 09:30:24 +08:00
}
}