Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
a7694087e4abaea261918ffbb3ffe38feb1da489
/
.
/
test
/
CodeGen
/
struct-copy.c
blob: 62c29aba6c9cfdc78ab223775370db1d2680a5b3 [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
struct
x
{
int
a
[
100
];
};
void
foo
(
struct
x
*
P
,
struct
x
*
Q
)
{
*
P
=
*
Q
;
}