xref
: /
aosp_15_r20
/
external
/
compiler-rt
/
test
/
profile
/
Inputs
/
gcc-flag-compatibility.c
(revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
int
X
= 0;
2
main()
3
int
main
() {
4
int
i
;
5
for
(
i
= 0;
i
<
100
;
i
++)
6
X
+=
i
;
7
return
0;
8
}
9