bolt/deps/llvm-18.1.8/clang/test/CodeGen/2004-02-12-LargeAggregateCopy.c
2025-02-14 19:21:04 +01:00

8 lines
175 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
struct X { int V[10000]; };
struct X Global1, Global2;
void test(void) {
// CHECK: llvm.memcpy
Global2 = Global1;
}