bolt/deps/llvm-18.1.8/llvm/test/Assembler/ifunc-dsolocal.ll
2025-02-14 19:21:04 +01:00

9 lines
214 B
LLVM

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
@foo = dso_local ifunc i32 (i32), ptr @foo_ifunc
; CHECK: @foo = dso_local ifunc i32 (i32), ptr @foo_ifunc
define internal ptr @foo_ifunc() {
entry:
ret ptr null
}