blob: c67ce2eaa1e9e6e7736df972134acf9a40769dee [file] [log] [blame]
; RUN: llc < %s -mtriple=x86_64-linux -relocation-model=static | FileCheck %s
@ptr = dso_local global i32* 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 i32* getelementptr ([131072 x i32], [131072 x i32]* @dst, i32 0, i32 16), i32** @ptr
ret void
}