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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr85195.c
blob
0cc696ba6eeb6006bd9a87e05f26f3ff2cb4bdd8
1
/* PR middle-end/85195 */
2
/* { dg-do compile { target int128 } } */
3
/* { dg-options "-Wno-psabi -O -fno-tree-ccp --param=sccvn-max-scc-size=10" } */
4
5
typedef
__int128 V
__attribute__
((
vector_size
(
16
)));
6
7
extern
int
bar
(
V
);
8
9
V v
;
10
int
i
;
11
12
V
13
foo
(
void
)
14
{
15
do
16
v
*=
bar
(
v
&
i
);
17
while
((
V
){}[
0
]);
18
return
v
;
19
}