repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2004-02-12-LargeAggregateCopy.c
blob
b3c9bcf381089c8b689cc1a928adde93ab8332a9
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