blob: dc716f1976508a7b7725cef980edf7e79303d854 [file] [log] [blame]
Ulrich Weigand9e3577f2013-05-06 16:17:29 +00001; Test multiplication of two f128s.
2;
3; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4
5; There is no memory form of 128-bit multiplication.
6define void @f1(fp128 *%ptr, float %f2) {
Stephen Lind24ab202013-07-14 06:24:09 +00007; CHECK-LABEL: f1:
Jonas Paulssonc63ed222017-10-06 13:59:28 +00008; CHECK-DAG: lxebr %f0, %f0
9; CHECK-DAG: ld %f1, 0(%r2)
10; CHECK-DAG: ld %f3, 8(%r2)
11; CHECK: mxbr %f0, %f1
12; CHECK: std %f0, 0(%r2)
13; CHECK: std %f2, 8(%r2)
Ulrich Weigand9e3577f2013-05-06 16:17:29 +000014; CHECK: br %r14
Ulrich Weigand9dd23b82018-07-20 12:12:10 +000015 %f1 = load fp128, fp128 *%ptr
Ulrich Weigand9e3577f2013-05-06 16:17:29 +000016 %f2x = fpext float %f2 to fp128
17 %diff = fmul fp128 %f1, %f2x
18 store fp128 %diff, fp128 *%ptr
19 ret void
20}