1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Assembler/ifunc-asm.ll

13 lines
285 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
target triple = "x86_64-unknown-linux-gnu"
@foo = ifunc i32 (i32), i64 ()* @foo_ifunc
; CHECK: @foo = ifunc i32 (i32), i64 ()* @foo_ifunc
define internal i64 @foo_ifunc() {
entry:
ret i64 0
}
; CHECK: define internal i64 @foo_ifunc()