2000-11-16 Kazu Hirata <kazu@hxi.com>
[deliverable/binutils-gdb.git] / bfd / cpu-arm.c
index bda9c4489a665f4b960602f1660be703f63b856b..7b351f5c0b5e1441ba41cd1a8c4814b9c36b65f1 100644 (file)
@@ -47,7 +47,7 @@ compatible (a,b)
      it can be polymorphed into the other */
   if (a->the_default)
     return b;
-  
+
   if (b->the_default)
     return a;
 
@@ -95,7 +95,7 @@ processors[] =
   { bfd_mach_arm_4,  "strongarm1100" },
 };
 
-static boolean 
+static boolean
 scan (info, string)
      const struct bfd_arch_info * info;
      const char * string;
@@ -119,16 +119,15 @@ scan (info, string)
   /* Finally check for the default architecture */
   if (strcasecmp (string, "arm") == 0)
     return info->the_default;
-  
+
   return false;
 }
 
-
 #define N(number, print, default, next)  \
 {  32, 32, 8, bfd_arch_arm, number, "arm", print, 4, default, compatible, scan, next }
 
 static const bfd_arch_info_type arch_info_struct[] =
-{ 
+{
   N( bfd_mach_arm_2,  "armv2",  false, & arch_info_struct[1] ),
   N( bfd_mach_arm_2a, "armv2a", false, & arch_info_struct[2] ),
   N( bfd_mach_arm_3,  "armv3",  false, & arch_info_struct[3] ),
This page took 0.023701 seconds and 4 git commands to generate.