bolt/deps/llvm-18.1.8/clang/test/CodeGen/2004-02-12-LargeAggregateCopy.c

9 lines
175 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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;
}