[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / callr-dep-edge.ll
blob7049121336c5df606e6ccf19c87cc85d5c088160
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2 ; Check that the callr and the load into r0 are not packetized together.
4 target triple = "hexagon"
6 @fp = common global ptr null, align 4
8 ; CHECK: [[REG:r[0-9]+]] = memw
9 ; CHECK: {
10 ; CHECK: callr [[REG]]
12 ; Function Attrs: nounwind
13 define i32 @foo() #0 {
14 entry:
15   %0 = load ptr, ptr @fp, align 4
16   %call = tail call i32 %0() #0
17   ret i32 %call
20 attributes #0 = { nounwind }