From 23bea16699cabe21283f21c13b4fb6d0586a8024 Mon Sep 17 00:00:00 2001 From: ngie Date: Thu, 1 Jun 2017 06:35:40 +0000 Subject: MFC r319157: fma_test: mute a warning about unreachable code on amd64 by restructuring the #ifdef block to only handle the rest of the logic in the loop in the #else case. CID: 1346844 --- lib/msun/tests/fma_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/msun') diff --git a/lib/msun/tests/fma_test.c b/lib/msun/tests/fma_test.c index af7910e..acaa9eb 100644 --- a/lib/msun/tests/fma_test.c +++ b/lib/msun/tests/fma_test.c @@ -498,11 +498,12 @@ main(int argc, char *argv[]) printf("ok %d # SKIP testcase fails assertion on " "amd64\n", j); continue; -#endif +#else printf("rmode = %d\n", rmodes[i]); fesetround(rmodes[i]); test_infinities(); printf("ok %d - fma infinities\n", j); +#endif } fesetround(FE_TONEAREST); -- cgit v1.1