Changeset 609 for branches/GNU/src/binutils/bfd/cpu-i370.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/cpu-i370.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* BFD i370 CPU definition 2 Copyright 1994, 1995, 1996, 1998, 1999, 2000 2 Copyright 1994, 1995, 1996, 1998, 1999, 2000, 2002 3 3 Free Software Foundation, Inc. 4 4 Contributed by Ian Lance Taylor, Cygnus Support. … … 25 25 #include "libbfd.h" 26 26 27 /* The common i360/370 architecture comes in many forms */28 29 static const bfd_arch_info_type *i370_compatible30 PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));31 32 static const bfd_arch_info_type *33 i370_compatible (a, b)34 const bfd_arch_info_type *a;35 const bfd_arch_info_type *b;36 {37 BFD_ASSERT (a->arch == bfd_arch_i370);38 switch (b->arch)39 {40 default:41 return NULL;42 case bfd_arch_i370:43 return bfd_default_compatible (a, b);44 }45 /*NOTREACHED*/46 }47 48 27 static const bfd_arch_info_type arch_info_struct[] = 49 28 { … … 58 37 "i370:360", 59 38 3, 60 false, /* not the default */61 i370_compatible,39 FALSE, /* not the default */ 40 bfd_default_compatible, 62 41 bfd_default_scan, 63 42 &arch_info_struct[1] … … 72 51 "i370:370", 73 52 3, 74 false, /* not the default */75 i370_compatible,53 FALSE, /* not the default */ 54 bfd_default_compatible, 76 55 bfd_default_scan, 77 56 0 … … 89 68 "i370:common", 90 69 3, 91 true, /* the default */92 i370_compatible,70 TRUE, /* the default */ 71 bfd_default_compatible, 93 72 bfd_default_scan, 94 73 &arch_info_struct[0] -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.