mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
9 lines
156 B
Plaintext
9 lines
156 B
Plaintext
|
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memcpy
|
||
|
|
||
|
struct X { int V[10000]; };
|
||
|
struct X Global1, Global2;
|
||
|
void test() {
|
||
|
Global2 = Global1;
|
||
|
}
|
||
|
|