repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
CodeGen
/
struct-copy.c
blob
6f3b6643f09a5d95e2687ff5f85843555a27f3cd
1
// RUN: %clang_cc1 -emit-llvm %s -o - | grep 'call.*llvm.memcpy'
2
struct
x
{
int
a
[
100
]; };
3
4
5
void
foo
(
struct
x
*
P
,
struct
x
*
Q
) {
6
*
P
= *
Q
;
7
}