Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
ubsan
/
pr79904-2.c
blob: dd33835f8cade23b6aedc06ffb26e3ba56fc950f [
file
] [
log
] [
blame
]
/* PR sanitizer/79904 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=signed-integer-overflow -Wno-psabi" } */
typedef
signed
char
V __attribute__
((
vector_size
(
8
)));
void
foo
(
V
*
a
)
{
*
a
=
*
a
*
(
V
)
{
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
};
}