diff options
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/rs6000/aix-unwind.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index a808ce3b08e..315934edc1f 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,5 +1,10 @@ 2017-11-07 Tom de Vries <tom@codesourcery.com> + * config/rs6000/aix-unwind.h (REGISTER_CFA_OFFSET_FOR): Remove semicolon + after "do {} while (0)". + +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)". diff --git a/libgcc/config/rs6000/aix-unwind.h b/libgcc/config/rs6000/aix-unwind.h index 156165894ea..9b4ca82f938 100644 --- a/libgcc/config/rs6000/aix-unwind.h +++ b/libgcc/config/rs6000/aix-unwind.h @@ -209,7 +209,7 @@ ucontext_for (struct _Unwind_Context *context) do { \ (FS)->regs.reg[REGNO].how = REG_SAVED_OFFSET; \ (FS)->regs.reg[REGNO].loc.offset = (long) (ADDR) - (CFA); \ -} while (0); +} while (0) static _Unwind_Reason_Code ppc_aix_fallback_frame_state (struct _Unwind_Context *context, |