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
/
torture
/
pr117137.c
blob
b6ce78d86087004de5b87e7bdd8425b933d58b7d
1
/* { dg-do compile } */
2
/* { dg-additional-options "-msse4" { target { x86_64-*-* i?86-*-* } } } */
3
4
long
x
[
2
];
5
6
int
7
foo
(
int
c
)
8
{
9
long
x0
=
x
[
0
],
x1
=
x
[
1
];
10
int
t
=
x0
!=
0
|
x1
!=
0
;
11
c
*=
t
;
12
return
c
;
13
}