xref: /llvm-project/llvm/test/Assembler/ifunc-dsolocal.ll (revision 75a479221b72c8b4827470485949cebf67d1c967)
1; RUN: llvm-as < %s | llvm-dis | FileCheck %s
2
3@foo = dso_local ifunc i32 (i32), ptr @foo_ifunc
4; CHECK: @foo = dso_local ifunc i32 (i32), ptr @foo_ifunc
5
6define internal ptr @foo_ifunc() {
7entry:
8  ret ptr null
9}
10