Star
3
Fork
37
代码
介绍
代码
Issues
3
Pull Requests
20
流水线
Actions
项目讨论
Wiki
项目成员
57
分析
项目设置
Star
3
Fork
37
main
llvm-project
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-shared-lib.c
下载
X
Xinliang David Li
[PGO] Ensure profile section symbols are created (linux)
b6c81d2b
创建于
2015年11月14日
历史提交
int
g1 =
0
;
int
g2 =
1
;
void
foo
(
int
n)
{
if
(n %
5
==
0
)
g1++;
else
g2++;
}