Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / vec-strict-mul-01.ll
blob52c40f4cb73e758c055b449e04b6a18a71d9cdbd
1 ; Test strict vector multiplication.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s
5 declare double @llvm.experimental.constrained.fmul.f64(double, double, metadata, metadata)
6 declare <2 x double> @llvm.experimental.constrained.fmul.v2f64(<2 x double>, <2 x double>, metadata, metadata)
8 ; Test a v2f64 multiplication.
9 define <2 x double> @f5(<2 x double> %dummy, <2 x double> %val1,
10                         <2 x double> %val2) #0 {
11 ; CHECK-LABEL: f5:
12 ; CHECK: vfmdb %v24, %v26, %v28
13 ; CHECK: br %r14
14   %ret = call <2 x double> @llvm.experimental.constrained.fmul.v2f64(
15                         <2 x double> %val1, <2 x double> %val2,
16                         metadata !"round.dynamic",
17                         metadata !"fpexcept.strict") #0
18   ret <2 x double> %ret
21 ; Test an f64 multiplication that uses vector registers.
22 define double @f6(<2 x double> %val1, <2 x double> %val2) #0 {
23 ; CHECK-LABEL: f6:
24 ; CHECK: wfmdb %f0, %v24, %v26
25 ; CHECK: br %r14
26   %scalar1 = extractelement <2 x double> %val1, i32 0
27   %scalar2 = extractelement <2 x double> %val2, i32 0
28   %ret = call double @llvm.experimental.constrained.fmul.f64(
29                         double %scalar1, double %scalar2,
30                         metadata !"round.dynamic",
31                         metadata !"fpexcept.strict") #0
32   ret double %ret
35 attributes #0 = { strictfp }