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,m32c] remove unneeded semicolon.


Just minor cleanups, discovered by Ben Elliston.

2007-06-28  DJ Delorie  <dj@redhat.com>

	* config/m32c/m32c.h (OVERRIDE_OPTIONS): Omit unneeded semicolon.

Index: config/m32c/m32c.h
===================================================================
--- config/m32c/m32c.h	(revision 126091)
+++ config/m32c/m32c.h	(working copy)
@@ -94,13 +94,13 @@ extern int target_memregs;
    to select between the two CPU families in general.  */
 #define TARGET_A16	(TARGET_R8C || TARGET_M16C)
 #define TARGET_A24	(TARGET_M32CM || TARGET_M32C)
 
 #define TARGET_VERSION fprintf (stderr, " (m32c)");
 
-#define OVERRIDE_OPTIONS m32c_override_options ();
+#define OVERRIDE_OPTIONS m32c_override_options ()
 
 /* Defining data structures for per-function information */
 
 typedef struct machine_function GTY (())
 {
   /* How much we adjust the stack when returning from an exception


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