[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / PowerPC / func-addr.ll
blobe78d68a2881c1cc9ddd9e9fe88784a87cee3a989
1 ; RUN: llc -relocation-model=static -verify-machineinstrs -mtriple powerpc64-linux < %s | FileCheck %s
2 ; RUN: llc -relocation-model=static -verify-machineinstrs -O0 -mtriple powerpc64-linux < %s | FileCheck %s
4 define dso_local void @foo()  {
5   ret void
7 declare i32 @bar(ptr)
9 ; CHECK-LABEL: {{^}}zed:
10 ; CHECK:        addis 3, 2, foo@toc@ha
11 ; CHECK-NEXT:   addi 3, 3, foo@toc@l
12 ; CHECK-NEXT:   bl bar
14 define  void @zed() {
15   call i32 @bar(ptr @foo)
16   ret void