diff options
author | segher <segher@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-25 17:50:29 +0000 |
---|---|---|
committer | segher <segher@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-25 17:50:29 +0000 |
commit | a532bc3056bd5e5bf5948c0cfdb6bc4baf007166 (patch) | |
tree | f1efc6e1bd9520936d28b178e0a38fa21755fd90 | |
parent | 359133654a89955c2da395e8feba6bc966da7ab1 (diff) | |
download | gcc-a532bc3056bd5e5bf5948c0cfdb6bc4baf007166.tar.gz |
libgcc/
* crtstuff.c (__do_glbal_ctors_1): Add missing semicolon.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218055 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/crtstuff.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <segher@kernel.crashing.org> + + * crtstuff.c (__do_glbal_ctors_1): Add missing semicolon. + 2014-11-24 John David Anglin <danglin@gcc.gnu.org> * 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)) { |