Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
ba4733d901b1c2b994f66707657342b8c81c92bc
/
.
/
test
/
CFrontend
/
2004-02-12-LargeAggregateCopy.c.tr
blob: b3c9bcf381089c8b689cc1a928adde93ab8332a9 [
file
] [
log
] [
blame
]
Chris Lattner
7266f41
2004-02-12 21:06:52 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memcpy
2
3
struct
X
{
int
V
[
10000
];
};
4
struct
X
Global1
,
Global2
;
5
void
test
()
{
6
Global2
=
Global1
;
7
}
8