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
2018-06-21 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr86232.c
blob
f5b61d3dfb725a1dd8abc9a358709e0b3c170e67
1
/* { dg-do compile } */
2
3
enum
{
a
=
1
}
b
;
4
int
c
()
5
{
6
int
d
=
a
;
7
for
(;
d
;)
8
d
&=
d
-
1
;
9
return
b
;
10
}