Changeset 609 for branches/GNU/src/binutils/bfd/cpu-arc.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-arc.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* BFD support for the ARC processor 2 Copyright 1994, 1995, 1997, 2001 Free Software Foundation, Inc.2 Copyright 1994, 1995, 1997, 2001, 2002 Free Software Foundation, Inc. 3 3 Contributed by Doug Evans (dje@cygnus.com). 4 4 … … 41 41 static const bfd_arch_info_type arch_info_struct[] = 42 42 { 43 ARC ( bfd_mach_arc_5, "arc5", false, &arch_info_struct[1] ),44 ARC ( bfd_mach_arc_5, "base", false, &arch_info_struct[2] ),45 ARC ( bfd_mach_arc_6, "arc6", false, &arch_info_struct[3] ),46 ARC ( bfd_mach_arc_7, "arc7", false, &arch_info_struct[4] ),47 ARC ( bfd_mach_arc_8, "arc8", false, NULL ),43 ARC ( bfd_mach_arc_5, "arc5", FALSE, &arch_info_struct[1] ), 44 ARC ( bfd_mach_arc_5, "base", FALSE, &arch_info_struct[2] ), 45 ARC ( bfd_mach_arc_6, "arc6", FALSE, &arch_info_struct[3] ), 46 ARC ( bfd_mach_arc_7, "arc7", FALSE, &arch_info_struct[4] ), 47 ARC ( bfd_mach_arc_8, "arc8", FALSE, NULL ), 48 48 }; 49 49 50 50 const bfd_arch_info_type bfd_arc_arch = 51 ARC ( bfd_mach_arc_6, "arc", true, &arch_info_struct[0] );51 ARC ( bfd_mach_arc_6, "arc", TRUE, &arch_info_struct[0] ); 52 52 53 53 /* Utility routines. */ … … 55 55 /* Given cpu type NAME, return its bfd_mach_arc_xxx value. 56 56 Returns -1 if not found. */ 57 58 int arc_get_mach PARAMS ((char *)); 57 59 58 60 int -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.