bolt/deps/llvm-18.1.8/llvm/test/CodeGen/X86/ga-offset.ll

12 lines
389 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc < %s -mtriple=x86_64-linux -relocation-model=static | FileCheck %s
@ptr = dso_local global ptr null
@dst = dso_local global [131072 x i32] zeroinitializer
define dso_local void @foo() nounwind {
; This store should fold to a single mov instruction.
; CHECK: movq $dst+64, ptr(%rip)
store ptr getelementptr ([131072 x i32], ptr @dst, i32 0, i32 16), ptr @ptr
ret void
}