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
/
pr111764.c
blob
f4e110f3bbfc7bec0fc213a8ee621f89ea8d64d5
1
#include
"tree-vect.h"
2
3
short
b
=
2
;
4
5
int
main
()
6
{
7
check_vect
();
8
9
for
(
int
a
=
1
;
a
<=
9
;
a
++)
10
b
=
b
*
b
;
11
if
(
b
!=
0
)
12
__builtin_abort
();
13
14
return
0
;
15
}
16