bolt/deps/llvm-18.1.8/llvm/test/CodeGen/Mips/tls-alias.ll

11 lines
273 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc -march=mipsel -relocation-model=pic -disable-mips-delay-filler < %s | FileCheck %s
@foo = thread_local global i32 42
@bar = hidden thread_local alias i32, ptr @foo
define ptr @zed() {
; CHECK-DAG: __tls_get_addr
; CHECK-DAG: %tlsldm(bar)
ret ptr @bar
}