diff options
author | kettenis <> | 2021-06-17 12:55:38 +0000 |
---|---|---|
committer | kettenis <> | 2021-06-17 12:55:38 +0000 |
commit | 9c47d05a116608c4e65633f11a9f886f0ffdc900 (patch) | |
tree | 31895ac76363ae60fd7580306685528b9937b3cc /src/regress/lib/libc/ieeefp | |
parent | 01cb4f1997a7e75f5de7a76da42ef7d98f97e964 (diff) | |
download | openbsd-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/Makefile | 4 |
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 | ||
3 | PROG=except | 3 | PROG=except |
4 | 4 | ||
5 | REGRESS_TARGETS+= fltdiv fltinv fltovf fltund | 5 | REGRESS_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 |
9 | REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund | 9 | REGRESS_EXPECTED_FAILURES+= fltdiv fltinv fltovf fltund |
10 | .endif | 10 | .endif |