This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] crtstuff: Add missing semicolon


I wonder how this survived so long, I must be building some strange
configs (it failed on an avr cross).  Okay for trunk?


Segher


2014-11-24  Segher Boessenkool  <segher@kernel.crashing.org>

libgcc/
	* crtstuff.c (__do_glbal_ctors_1): Add missing semicolon.

---
 libgcc/crtstuff.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libgcc/crtstuff.c b/libgcc/crtstuff.c
index 03a30fe..62a4b42 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))
     {
-- 
1.8.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]