bolt/deps/llvm-18.1.8/llvm/test/CodeGen/X86/global-sections-tls.ll

15 lines
268 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: llc < %s -mtriple=i386-unknown-linux-gnu | FileCheck %s -check-prefix=LINUX
; PR4639
@G1 = internal thread_local global i32 0 ; <ptr> [#uses=1]
; LINUX: .section .tbss,"awT",@nobits
; LINUX: G1:
define ptr @foo() nounwind readnone {
entry:
ret ptr @G1
}