summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/ieeefp
diff options
context:
space:
mode:
authorkettenis <>2021-06-17 12:55:38 +0000
committerkettenis <>2021-06-17 12:55:38 +0000
commit9c47d05a116608c4e65633f11a9f886f0ffdc900 (patch)
tree31895ac76363ae60fd7580306685528b9937b3cc /src/regress/lib/libc/ieeefp
parent01cb4f1997a7e75f5de7a76da42ef7d98f97e964 (diff)
downloadopenbsd-9c47d05a116608c4e65633f11a9f886f0ffdc900.tar.gz
openbsd-9c47d05a116608c4e65633f11a9f886f0ffdc900.tar.bz2
openbsd-9c47d05a116608c4e65633f11a9f886f0ffdc900.zip
Like ARM, RISC-V does not implement floating point exceptions.
Diffstat (limited to 'src/regress/lib/libc/ieeefp')
-rw-r--r--src/regress/lib/libc/ieeefp/except/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libc/ieeefp/except/Makefile b/src/regress/lib/libc/ieeefp/except/Makefile
index cf73841c4e..0a16eb762e 100644
--- a/src/regress/lib/libc/ieeefp/except/Makefile
+++ b/src/regress/lib/libc/ieeefp/except/Makefile
@@ -1,10 +1,10 @@
1# $OpenBSD: Makefile,v 1.6 2020/10/18 17:40:06 kettenis Exp $ 1# $OpenBSD: Makefile,v 1.7 2021/06/17 12:55:38 kettenis Exp $
2 2
3PROG=except 3PROG=except
4 4
5REGRESS_TARGETS+= fltdiv fltinv fltovf fltund 5REGRESS_TARGETS+= fltdiv fltinv fltovf fltund
6 6
7.if ${MACHINE} == arm64 || ${MACHINE} == armv7 7.if ${MACHINE} == arm64 || ${MACHINE} == armv7 || ${MACHINE} == riscv64
8# Floating-point exceptions are optional and absent on most hardware 8# Floating-point exceptions are optional and absent on most hardware
9REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund 9REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund
10.endif 10.endif