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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr78575.c
blob
6b27f10706aa1b88e8b700d49411cc9756195b76
1
/* PR rtl-optimization/78575 */
2
/* { dg-do compile { target int128 } } */
3
/* { dg-options "-O2 -g -Wno-psabi" } */
4
5
typedef
unsigned
__int128 V
__attribute__
((
vector_size
(
64
)));
6
7
V g
;
8
9
void
10
foo
(
V v
)
11
{
12
unsigned
__int128 x
=
1
;
13
int
c
=
v
[
1
] <= ~
x
;
14
v
&=
v
[
1
];
15
g
=
v
;
16
}