mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 22:16:05 +00:00

Some tests are removed because the error conditions can no longer occur with opaque pointers.
10 lines
214 B
LLVM
10 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
|
|
}
|