23 lines · plain
1; RUN: llc -mtriple=s390x-linux-gnu -mcpu=z14 -O3 -mattr=soft-float < %s | FileCheck %s2;3; Check that this function with soft-float does not result in a s390.tdc4; intrinsic (which cannot be handled by SoftenFloatOperand).5 6define void @fun(float %arg) {7; CHECK-LABEL: fun:8; CHECK: cijl9bb:10 %tmp = bitcast float %arg to i3211 br label %bb112 13bb1: ; preds = %bb14 %tmp2 = icmp sgt i32 %tmp, -115 br i1 %tmp2, label %bb3, label %bb416 17bb3: ; preds = %bb118 unreachable19 20bb4: ; preds = %bb121 unreachable22}23