diff options
author | Tom de Vries <tom@codesourcery.com> | 2017-11-07 08:11:43 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2017-11-07 08:11:43 +0000 |
commit | 2a321acb02d5b678f7fd4a4aadc31e586acac84a (patch) | |
tree | 12382982e87269a54d5ddd3b1b95d07c00b3ea34 /libgcc/config/mips | |
parent | 96d155c6968bf7e2eadc61f1a9bbcc0dd5ae899d (diff) | |
download | gcc-2a321acb02d5b678f7fd4a4aadc31e586acac84a.zip gcc-2a321acb02d5b678f7fd4a4aadc31e586acac84a.tar.gz gcc-2a321acb02d5b678f7fd4a4aadc31e586acac84a.tar.bz2 |
[libgcc] Remove semicolon after do {} while (0) in FP_HANDLE_EXCEPTIONS
2017-11-07 Tom de Vries <tom@codesourcery.com>
PR other/82784
* config/aarch64/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Remove
semicolon after "do {} while (0)".
* config/i386/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Same.
* config/ia64/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Same.
* config/mips/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Same.
* config/rs6000/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Same.
From-SVN: r254489
Diffstat (limited to 'libgcc/config/mips')
-rw-r--r-- | libgcc/config/mips/sfp-machine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/config/mips/sfp-machine.h b/libgcc/config/mips/sfp-machine.h index 07d1158..5d70875 100644 --- a/libgcc/config/mips/sfp-machine.h +++ b/libgcc/config/mips/sfp-machine.h @@ -165,7 +165,7 @@ typedef int __gcc_CMPtype __attribute__ ((mode (__libgcc_cmp_return__))); _fcsr &= ~(1 << 17); \ _fcsr |= _fex | (_fex << FP_EX_CAUSE_SHIFT); \ __builtin_mips_set_fcsr (_fcsr); \ - } while (0); + } while (0) #else #define FP_EX_INVALID (1 << 4) |