diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/vec-strict-mul-02.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/vec-strict-mul-02.ll | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/SystemZ/vec-strict-mul-02.ll b/llvm/test/CodeGen/SystemZ/vec-strict-mul-02.ll index 61447aa9b0d..fc9c1575952 100644 --- a/llvm/test/CodeGen/SystemZ/vec-strict-mul-02.ll +++ b/llvm/test/CodeGen/SystemZ/vec-strict-mul-02.ll @@ -6,7 +6,7 @@ declare <2 x double> @llvm.experimental.constrained.fma.v2f64(<2 x double>, <2 x ; Test a v2f64 multiply-and-add. define <2 x double> @f4(<2 x double> %dummy, <2 x double> %val1, - <2 x double> %val2, <2 x double> %val3) { + <2 x double> %val2, <2 x double> %val3) #0 { ; CHECK-LABEL: f4: ; CHECK: vfmadb %v24, %v26, %v28, %v30 ; CHECK: br %r14 @@ -15,13 +15,13 @@ define <2 x double> @f4(<2 x double> %dummy, <2 x double> %val1, <2 x double> %val2, <2 x double> %val3, metadata !"round.dynamic", - metadata !"fpexcept.strict") + metadata !"fpexcept.strict") #0 ret <2 x double> %ret } ; Test a v2f64 multiply-and-subtract. define <2 x double> @f5(<2 x double> %dummy, <2 x double> %val1, - <2 x double> %val2, <2 x double> %val3) { + <2 x double> %val2, <2 x double> %val3) #0 { ; CHECK-LABEL: f5: ; CHECK: vfmsdb %v24, %v26, %v28, %v30 ; CHECK: br %r14 @@ -31,6 +31,8 @@ define <2 x double> @f5(<2 x double> %dummy, <2 x double> %val1, <2 x double> %val2, <2 x double> %negval3, metadata !"round.dynamic", - metadata !"fpexcept.strict") + metadata !"fpexcept.strict") #0 ret <2 x double> %ret } + +attributes #0 = { strictfp } |