OpenGrok
Cross Reference: gcc-flag-compatibility.c
xref
: /
external
/
compiler-rt
/
test
/
profile
/
Inputs
/
gcc-flag-compatibility.c
Home
|
History
|
Annotate
|
Download
|
only in
Inputs
1
int
X =
0
;
2
3
int
main
() {
4
int
i;
5
for
(i =
0
; i <
100
; i++)
6
X += i;
7
return
0
;
8
}
9