This lot mainly cleans up `comparison between signed and unsigned' gcc
[deliverable/binutils-gdb.git] / bfd / cpu-m32r.c
index d7e7a780a04648dbfad700b1525c0e28fb56a42c..895ad413b2669a93d4943c857618abf54e06d17a 100644 (file)
@@ -1,5 +1,5 @@
 /* BFD support for the M32R processor.
 /* BFD support for the M32R processor.
-   Copyright (C) 1996 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
 
 
 This file is part of BFD, the Binary File Descriptor library.
 
@@ -22,12 +22,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #include "libbfd.h"
 
 #define N(number, print, default, next)  \
 #include "libbfd.h"
 
 #define N(number, print, default, next)  \
-{  32, 32, 8, bfd_arch_m32r, number, "m32r", print, 4, default, bfd_default_compatible, bfd_default_scan, next }
+{  32, 32, 8, bfd_arch_m32r, number, "m32r", print, 4, default, \
+     bfd_default_compatible, bfd_default_scan, next }
 
 
-static const bfd_arch_info_type arch_info_struct[2] = 
+#define NEXT NULL
+
+static const bfd_arch_info_type arch_info_struct[] = 
 {
 {
-  N( bfd_mach_m32rx, "m32rx", false, NULL ),
+  N (bfd_mach_m32rx, "m32rx", false, NULL)
 };
 
 };
 
+#undef NEXT
+#define NEXT &arch_info_struct[0]
+
 const bfd_arch_info_type bfd_m32r_arch =
 const bfd_arch_info_type bfd_m32r_arch =
-  N( bfd_mach_m32r, "m32r", true, & arch_info_struct[0] );
+  N (bfd_mach_m32r, "m32r", true, NEXT);
This page took 0.023552 seconds and 4 git commands to generate.