Home | History | Annotate | Download | only in Assembler
      1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
      2 
      3 target triple = "x86_64-unknown-linux-gnu"
      4 
      5 @foo = ifunc i32 (i32), i64 ()* @foo_ifunc
      6 ; CHECK: @foo = ifunc i32 (i32), i64 ()* @foo_ifunc
      7 
      8 define internal i64 @foo_ifunc() {
      9 entry:
     10   ret i64 0
     11 }
     12 ; CHECK: define internal i64 @foo_ifunc()
     13