| ; Test SystemZInstrInfo::analyzeBranch and SystemZInstrInfo::insertBranch. |
| ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s |
| declare void @foo() noreturn |
| ; Check a case where a separate branch is needed and where the original |
| ; order should be reversed. |
| define i32 @f1(i32 %a, ptr %bptr) { |
| ; CHECK: jl .L[[LABEL:.*]] |
| ; CHECK: brasl %r14, foo@PLT |
| %cmp = icmp ult i32 %a, %b |
| br i1 %cmp, label %callit, label %return |
| ; Same again with a fused compare and branch. |
| ; CHECK: cije %r2, 0, .L[[LABEL:.*]] |
| ; CHECK: brasl %r14, foo@PLT |
| br i1 %cmp, label %callit, label %return |