From a0d7066a1c6b86adbf1fa13f14038e30885cf1da Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 5 Dec 2012 20:04:32 +0000 Subject: Fix "set but not used" warnings for X##_s in soft-fp. --- soft-fp/op-common.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'soft-fp/op-common.h') diff --git a/soft-fp/op-common.h b/soft-fp/op-common.h index 12fb16e5ef..8855ad3acf 100644 --- a/soft-fp/op-common.h +++ b/soft-fp/op-common.h @@ -29,8 +29,10 @@ License along with the GNU C Library; if not, see . */ -#define _FP_DECL(wc, X) \ - _FP_I_TYPE X##_c __attribute__((unused)), X##_s, X##_e; \ +#define _FP_DECL(wc, X) \ + _FP_I_TYPE X##_c __attribute__((unused)); \ + _FP_I_TYPE X##_s __attribute__((unused)); \ + _FP_I_TYPE X##_e; \ _FP_FRAC_DECL_##wc(X) /* -- cgit 1.4.1