diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/fp-strict-add-04.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/fp-strict-add-04.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/SystemZ/fp-strict-add-04.ll b/llvm/test/CodeGen/SystemZ/fp-strict-add-04.ll index d4ec5fc6854..98a3454a898 100644 --- a/llvm/test/CodeGen/SystemZ/fp-strict-add-04.ll +++ b/llvm/test/CodeGen/SystemZ/fp-strict-add-04.ll @@ -4,7 +4,7 @@ declare fp128 @llvm.experimental.constrained.fadd.f128(fp128, fp128, metadata, metadata) -define void @f1(fp128 *%ptr1, fp128 *%ptr2) { +define void @f1(fp128 *%ptr1, fp128 *%ptr2) strictfp { ; CHECK-LABEL: f1: ; CHECK-DAG: vl [[REG1:%v[0-9]+]], 0(%r2) ; CHECK-DAG: vl [[REG2:%v[0-9]+]], 0(%r3) @@ -16,7 +16,7 @@ define void @f1(fp128 *%ptr1, fp128 *%ptr2) { %sum = call fp128 @llvm.experimental.constrained.fadd.f128( fp128 %f1, fp128 %f2, metadata !"round.dynamic", - metadata !"fpexcept.strict") + metadata !"fpexcept.strict") strictfp store fp128 %sum, fp128 *%ptr1 ret void } |