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
/
pr68129_1.c
blob
112331e665dc8d6e6c661b3942799fec38be1deb
1
/* { dg-do compile } */
2
/* { dg-options "-O -fno-split-wide-types" } */
3
4
typedef
int
V
__attribute__
((
vector_size
(
8
*
sizeof
(
int
))));
5
6
void
7
foo
(
V
*
p
,
V
*
q
)
8
{
9
*
p
= (*
p
== *
q
);
10
}