Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
strncpy-pr111361.c
blob: da3eaeb6edb905ebe80935da39c8b2020d41ce4a [
file
] [
log
] [
blame
]
typedef
int
__attribute__
((
__vector_size__
(
32
)))
V
;
void
foo
(
char
*
out
)
{
V v
=
(
V
)
{
};
__builtin_strncpy
(
out
,
(
char
*)&
v
,
5
);
}