• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llvm-as < %s | llvm-dis | FileCheck %s
2
3target 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
8define internal i64 @foo_ifunc() {
9entry:
10  ret i64 0
11}
12; CHECK: define internal i64 @foo_ifunc()
13