From e5af49e889229028aa3fe545c6c2eb00df0da8ae Mon Sep 17 00:00:00 2001 From: ngie Date: Thu, 1 Jun 2017 06:35:37 +0000 Subject: [PATCH] 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(-) diff --git a/lib/msun/tests/fma_test.c b/lib/msun/tests/fma_test.c index 1b9a490230a..8b654665700 100644 --- a/lib/msun/tests/fma_test.c +++ b/lib/msun/tests/fma_test.c @@ -498,11 +498,12 @@ main(void) 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); -- 2.45.0