Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
ubsan
/
pr79904.c
blob: af8166930a923e3b39a22b71c305283c6ed157a6 [
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
*
3
;
}