Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
plugin
/
ggcplug-test-1.c
blob: 74e68bb82ec707fa743b3929ad78ec41bd8e3e76 [
file
] [
log
] [
blame
]
/* Test the ggcplug plugin. */
/* { dg-do compile } */
/* { dg-options "-O" } */
int
main
()
{
int
i
=
0
,
j
=
0
;
for
(
i
=
0
;
i
<
1000
;
i
++)
if
(
i
%
8
==
0
)
j
++;
return
0
;
}