diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-13 10:06:11 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-13 10:06:11 +0000 |
commit | e12dd2eac61c91b3388bac1ccb9eb1d3f0745074 (patch) | |
tree | a06bbb4f3139b6bfa467f09a464f035502b89f59 /bfd/cpu-v850.c | |
parent | 7f6621cdd77983f544f331528e249bb5f4238953 (diff) | |
download | gdb-e12dd2eac61c91b3388bac1ccb9eb1d3f0745074.zip gdb-e12dd2eac61c91b3388bac1ccb9eb1d3f0745074.tar.gz gdb-e12dd2eac61c91b3388bac1ccb9eb1d3f0745074.tar.bz2 |
Add missing prototypes. Fix formatting.
Diffstat (limited to 'bfd/cpu-v850.c')
-rw-r--r-- | bfd/cpu-v850.c | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/bfd/cpu-v850.c b/bfd/cpu-v850.c index 5eb5b74..359c2c4 100644 --- a/bfd/cpu-v850.c +++ b/bfd/cpu-v850.c @@ -1,5 +1,5 @@ /* BFD support for the NEC V850 processor - Copyright 1996, 1997, 1998, 2000 Free Software Foundation, Inc. + Copyright 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -23,6 +23,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <ctype.h> +static boolean scan PARAMS ((const struct bfd_arch_info *, const char *)); + static boolean scan (info, string) const struct bfd_arch_info * info; @@ -33,38 +35,34 @@ scan (info, string) unsigned long number; enum bfd_architecture arch; - /* First test for an exact match */ + /* First test for an exact match. */ if (strcasecmp (string, info->printable_name) == 0) return true; /* See how much of the supplied string matches with the architecture, eg the string m68k:68020 would match the m68k entry - up to the :, then we get left with the machine number */ - + up to the :, then we get left with the machine number. */ for (ptr_src = string, ptr_tst = info->arch_name; *ptr_src && *ptr_tst; ptr_src++, ptr_tst++) - { - if (*ptr_src != *ptr_tst) break; - } + if (*ptr_src != *ptr_tst) + break; - /* Chewed up as much of the architecture as will match, skip any - colons */ + /* Chewed up as much of the architecture as will match; + if there is a colon present skip it. */ if (*ptr_src == ':') - ptr_src++; + ptr_src ++; if (*ptr_src == 0) - { - /* nothing more, then only keep this one if it is the default - machine for this architecture */ - return info->the_default; - } + /* Nothing more, then only keep this one if it is + the default machine for this architecture. */ + return info->the_default; number = 0; while (isdigit ((unsigned char) *ptr_src)) { number = number * 10 + * ptr_src - '0'; - ptr_src++; + ptr_src ++; } switch (number) @@ -92,12 +90,12 @@ scan (info, string) static const bfd_arch_info_type arch_info_struct[] = { - N (bfd_mach_v850e, "v850e", false, &arch_info_struct[1]), + N (bfd_mach_v850e, "v850e", false, & arch_info_struct[1]), N (bfd_mach_v850ea, "v850ea", false, NULL) }; -#undef NEXT -#define NEXT &arch_info_struct[0] +#undef NEXT +#define NEXT & arch_info_struct[0] const bfd_arch_info_type bfd_v850_arch = N (bfd_mach_v850, "v850", true, NEXT); |