aboutsummaryrefslogtreecommitdiff
path: root/bfd/cpu-v850.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1997-09-02 22:53:31 +0000
committerNick Clifton <nickc@redhat.com>1997-09-02 22:53:31 +0000
commitdef31039acdf63f0ebb9ba24aa0ec627fd11086a (patch)
tree3cc9e37ef1949fd453f946d3545d1db225f64d2f /bfd/cpu-v850.c
parent552c6220e0bf1173ccf939170835dcd505282a1d (diff)
downloadgdb-def31039acdf63f0ebb9ba24aa0ec627fd11086a.zip
gdb-def31039acdf63f0ebb9ba24aa0ec627fd11086a.tar.gz
gdb-def31039acdf63f0ebb9ba24aa0ec627fd11086a.tar.bz2
Switched over to using new reloc types.
Diffstat (limited to 'bfd/cpu-v850.c')
-rw-r--r--bfd/cpu-v850.c47
1 files changed, 5 insertions, 42 deletions
diff --git a/bfd/cpu-v850.c b/bfd/cpu-v850.c
index d035bf3..f15c360 100644
--- a/bfd/cpu-v850.c
+++ b/bfd/cpu-v850.c
@@ -83,55 +83,18 @@ scan (info, string)
return true;
}
+#define N(number, print, default, next) \
+{ 32, 32, 8, bfd_arch_v850, number, "v850", print, 2, default, bfd_default_compatible, scan, next }
static const bfd_arch_info_type arch_info_struct[2] =
{
/* start-sanitize-v850e */
- {
- 32, /* 32 bits in a word */
- 32, /* 32 bits in an address */
- 8, /* 8 bits in a byte */
- bfd_arch_v850,
- bfd_mach_v850e,
- "v850",
- "v850e",
- 2,
- false,
- bfd_default_compatible,
- scan,
- & arch_info_struct[ 1 ],
- },
+ N( bfd_mach_v850e, "v850e", false, & arch_info_struct[1] ),
/* end-sanitize-v850e */
/* start-sanitize-v850eq */
- {
- 32, /* 32 bits in a word */
- 32, /* 32 bits in an address */
- 8, /* 8 bits in a byte */
- bfd_arch_v850,
- bfd_mach_v850eq,
- "v850",
- "v850eq",
- 2,
- false,
- bfd_default_compatible,
- scan,
- 0,
- }
+ N( bfd_mach_v850eq, "v850eq", false, NULL ),
/* end-sanitize-v850eq */
};
const bfd_arch_info_type bfd_v850_arch =
- {
- 32, /* 32 bits in a word */
- 32, /* 32 bits in an address */
- 8, /* 8 bits in a byte */
- bfd_arch_v850,
- bfd_mach_v850,
- "v850",
- "v850",
- 2,
- true, /* the default */
- bfd_default_compatible,
- scan ,
- & arch_info_struct[ 0 ],
- };
+ N( bfd_mach_v850, "v850", true, & arch_info_struct[0] );