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-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
no-fre-pre-pr50208.c
blob
996e5860ee03f37562c41f8f106c956d80b2694e
1
/* { dg-do compile } */
2
3
char
c
;
4
int
a
,
b
;
5
6
void
foo
(
int
j
)
7
{
8
int
i
;
9
while
(--
j
)
10
{
11
b
=
3
;
12
for
(
i
=
0
;
i
<
2
; ++
i
)
13
a
=
b
^
c
;
14
}
15
}
16