mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
a24a01e0c1
A set of function attributes is required in any function that uses constrained floating point intrinsics. None of our tests use these attributes. This patch fixes this. These tests have been tested against the IR verifier changes in D68233. Reviewed by: andrew.w.kaylor, cameron.mcinally, uweigand Approved by: andrew.w.kaylor Differential Revision: https://reviews.llvm.org/D67925 llvm-svn: 373761
21 lines
682 B
LLVM
21 lines
682 B
LLVM
; Test strict 128-bit floating-point square root on z14.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z14 | FileCheck %s
|
|
|
|
declare fp128 @llvm.experimental.constrained.sqrt.f128(fp128, metadata, metadata)
|
|
|
|
define void @f1(fp128 *%ptr) strictfp {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK-DAG: vl [[REG:%v[0-9]+]], 0(%r2)
|
|
; CHECK: wfsqxb [[RES:%v[0-9]+]], [[REG]]
|
|
; CHECK: vst [[RES]], 0(%r2)
|
|
; CHECK: br %r14
|
|
%f = load fp128, fp128 *%ptr
|
|
%res = call fp128 @llvm.experimental.constrained.sqrt.f128(
|
|
fp128 %f,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") strictfp
|
|
store fp128 %res, fp128 *%ptr
|
|
ret void
|
|
}
|