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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr66168.c
blob
d6bfc7b44a6f0b24568a4e0b8c29b1c16777cd36
1
int
a
,
b
;
2
3
void
4
fn1
()
5
{
6
for
(;;)
7
{
8
for
(
b
=
0
;
b
<
3
;
b
++)
9
{
10
char
e
[
2
];
11
char
f
=
e
[
1
];
12
a
^=
f
?
1
/
f
:
0
;
13
}
14
}
15
}