[lldb] Make sure Blocks always have a parent (#117683)
[llvm-project.git] / llvm / test / CodeGen / SystemZ / fp-strict-mul-05.ll
blobcda08261a5f5610cedac570354a230b34f79071e
1 ; Test strict multiplication of two f128s.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 declare fp128 @llvm.experimental.constrained.fmul.f128(fp128, fp128, metadata, metadata)
6 declare fp128 @llvm.experimental.constrained.fpext.f128.f32(float, metadata)
8 ; There is no memory form of 128-bit multiplication.
9 define void @f1(ptr %ptr, float %f2) strictfp {
10 ; CHECK-LABEL: f1:
11 ; CHECK-DAG: lxebr %f0, %f0
12 ; CHECK-DAG: ld %f1, 0(%r2)
13 ; CHECK-DAG: ld %f3, 8(%r2)
14 ; CHECK: mxbr %f0, %f1
15 ; CHECK: std %f0, 0(%r2)
16 ; CHECK: std %f2, 8(%r2)
17 ; CHECK: br %r14
18   %f1 = load fp128, ptr %ptr
19   %f2x = call fp128 @llvm.experimental.constrained.fpext.f128.f32(float %f2,
20                                                metadata !"fpexcept.strict") #0
21   %diff = call fp128 @llvm.experimental.constrained.fmul.f128(
22                         fp128 %f1, fp128 %f2x,
23                         metadata !"round.dynamic",
24                         metadata !"fpexcept.strict") #0
25   store fp128 %diff, ptr %ptr
26   ret void
29 attributes #0 = { strictfp }