repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2004-02-12-LargeAggregateCopy.c
blob
a34f80d54e550fc51c5f6040a2a6ec1c8d412af3
1
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3
struct
X
{
int
V
[
10000
]; };
4
struct
X Global1
,
Global2
;
5
void
test
(
void
) {
6
// CHECK: llvm.memcpy
7
Global2
=
Global1
;
8
}