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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr71439.c
blob
1f596a8e4de5715d2adcd8259738d35abab1ded5
1
#include
"tree-vect.h"
2
3
int
a
,
b
,
c
;
4
short
fn1
(
int
p1
,
int
p2
) {
return
p1
+
p2
; }
5
6
int
main
() {
7
check_vect
();
8
a
=
0
;
9
for
(;
a
<
30
;
a
=
fn1
(
a
,
4
)) {
10
c
=
b
;
11
b
=
6
;
12
}
13
14
if
(
c
!=
6
)
15
abort
();
16
17
return
0
;
18
}