summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2023-02-02 14:06:53 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2023-02-02 14:06:53 +0100
commitcc5dbb576af26e164e615cc4998193ff52f55aa8 (patch)
tree5514c0cacf7f4811f8700231eca8f5010deb2056
parente19b9d9115fd3b060f61229549e34184f8d6c37e (diff)
disable for noMMU builds
-rw-r--r--test/math/test-fpucw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/math/test-fpucw.c b/test/math/test-fpucw.c
index 93237ea..340d72b 100644
--- a/test/math/test-fpucw.c
+++ b/test/math/test-fpucw.c
@@ -22,7 +22,7 @@
int
main (void)
{
-#ifdef _FPU_GETCW
+#if defined(_FPU_GETCW) && !defined(__uClinux__)
/* Some architectures don't have _FPU_GETCW (e.g. Linux/Alpha). */
fpu_control_t cw;