This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java 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 committed] Fix SH libjava compile time warnings


I've checked the patch below in as an obvious fix.

Regards,
	kaz
--
2005-11-04  Kaz Kojima  <kkojima@gcc.gnu.org>

	* include/sh-signal.h (MAKE_THROW_FRAME): Remove trailing whitespace.

--- ORIG/trunk/libjava/include/sh-signal.h	2005-10-29 06:54:08.000000000 +0900
+++ LOCAL/trunk/libjava/include/sh-signal.h	2005-11-04 07:16:06.000000000 +0900
@@ -42,7 +42,7 @@ typedef struct _sig_ucontext {
 #define MAKE_THROW_FRAME(_exception)					\
 do									\
   {									\
-    volatile struct sigcontext *_sc = &_uc->uc_mcontext;		\ 
+    volatile struct sigcontext *_sc = &_uc->uc_mcontext;		\
     _sc->sc_pc += 4;							\
   }									\
 while (0)
@@ -50,7 +50,7 @@ while (0)
 #define MAKE_THROW_FRAME(_exception)					\
 do									\
   {									\
-    volatile struct sigcontext *_sc = &_uc->uc_mcontext;		\ 
+    volatile struct sigcontext *_sc = &_uc->uc_mcontext;		\
     _sc->sc_pc += 2;							\
   }									\
 while (0)


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