From: Segher Boessenkool Date: Tue, 25 Nov 2014 17:50:29 +0000 (+0100) Subject: crtstuff.c (__do_glbal_ctors_1): Add missing semicolon. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d19f2e385cc27fab1acbe352abeb6cbc0e17572a;p=gcc.git crtstuff.c (__do_glbal_ctors_1): Add missing semicolon. libgcc/ * crtstuff.c (__do_glbal_ctors_1): Add missing semicolon. From-SVN: r218055 --- diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index d35a962a7b9..a61e5fc6feb 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2014-11-25 Segher Boessenkool + + * crtstuff.c (__do_glbal_ctors_1): Add missing semicolon. + 2014-11-24 John David Anglin * config/pa/linux-atomic.c (ABORT_INSTRUCTION): Use __builtin_trap() diff --git a/libgcc/crtstuff.c b/libgcc/crtstuff.c index 03a30fe176e..62a4b42276c 100644 --- a/libgcc/crtstuff.c +++ b/libgcc/crtstuff.c @@ -582,7 +582,7 @@ __do_global_ctors_1(void) #endif #ifdef __LIBGCC_JCR_SECTION_NAME__ - void **jcr_list + void **jcr_list; __asm ("" : "=g" (jcr_list) : "0" (__JCR_LIST__)); if (__builtin_expect (*jcr_list != NULL, 0)) {