mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 22:28:22 +00:00
b34a81ff50
It seems that llc cannot be called used in assembler tests so test that checks asm for particular target needs to be moved to codegen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265770 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
371 B
LLVM
16 lines
371 B
LLVM
; RUN: llvm-as < %s -o - | llc -filetype=asm | FileCheck %s
|
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define internal i64 @foo_ifunc() {
|
|
entry:
|
|
ret i64 0
|
|
}
|
|
; CHECK: .type foo_ifunc,@function
|
|
; CHECK-NEXT: foo_ifunc:
|
|
|
|
@foo = ifunc i32 (i32), i64 ()* @foo_ifunc
|
|
; CHECK: .type foo,@function
|
|
; CHECK-NEXT: .type foo,@gnu_indirect_function
|
|
; CHECK-NEXT: foo = foo_ifunc
|