[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / SystemZ / fp-strict-mul-13.ll
blob32f609bb26eb41b4fd6b6d87deb22404c2bc22e8
1 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
3 declare fp128 @llvm.experimental.constrained.fma.f128(fp128 %f1, fp128 %f2, fp128 %f3, metadata, metadata)
5 define void @f1(fp128 *%ptr1, fp128 *%ptr2, fp128 *%ptr3, fp128 *%dst) #0 {
6 ; CHECK-LABEL: f1:
7 ; CHECK: brasl %r14, fmal
8 ; CHECK: br %r14
9   %f1 = load fp128, fp128 *%ptr1
10   %f2 = load fp128, fp128 *%ptr2
11   %f3 = load fp128, fp128 *%ptr3
12   %res = call fp128 @llvm.experimental.constrained.fma.f128 (
13                         fp128 %f1, fp128 %f2, fp128 %f3,
14                         metadata !"round.dynamic",
15                         metadata !"fpexcept.strict") #0
16   store fp128 %res, fp128 *%dst
17   ret void
20 attributes #0 = { strictfp }