repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RFA] Fix csky and c6x build failures
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr100740.c
blob
a85855ebe185b91693132487c845cd20573e072b
1
/* { dg-do run } */
2
3
unsigned
a
,
b
;
4
int
main
()
5
{
6
unsigned
c
=
0
;
7
for
(
a
=
0
;
a
<
2
;
a
++)
8
for
(
b
=
0
;
b
<
2
;
b
++)
9
if
(++
c
<
a
)
10
__builtin_abort
();
11
return
0
;
12
}