| OLD | NEW |
| 1 /* BFD i370 CPU definition | 1 /* BFD i370 CPU definition |
| 2 Copyright 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2005, 2007 | 2 Copyright 1994, 1995, 1996, 1998, 1999, 2000, 2002, 2005, 2007 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 Contributed by Ian Lance Taylor, Cygnus Support. | 4 Contributed by Ian Lance Taylor, Cygnus Support. |
| 5 Hacked by Linas Vepstas <linas@linas.org> in 1998, 1999 | 5 Hacked by Linas Vepstas <linas@linas.org> in 1998, 1999 |
| 6 | 6 |
| 7 This file is part of BFD, the Binary File Descriptor library. | 7 This file is part of BFD, the Binary File Descriptor library. |
| 8 | 8 |
| 9 This program is free software; you can redistribute it and/or modify | 9 This program is free software; you can redistribute it and/or modify |
| 10 it under the terms of the GNU General Public License as published by | 10 it under the terms of the GNU General Public License as published by |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 32, /* 32 bits in an address. */ | 33 32, /* 32 bits in an address. */ |
| 34 8, /* 8 bits in a byte. */ | 34 8, /* 8 bits in a byte. */ |
| 35 bfd_arch_i370, | 35 bfd_arch_i370, |
| 36 360, /* For the 360. */ | 36 360, /* For the 360. */ |
| 37 "i370", | 37 "i370", |
| 38 "i370:360", | 38 "i370:360", |
| 39 3, | 39 3, |
| 40 FALSE, /* Not the default. */ | 40 FALSE, /* Not the default. */ |
| 41 bfd_default_compatible, | 41 bfd_default_compatible, |
| 42 bfd_default_scan, | 42 bfd_default_scan, |
| 43 bfd_arch_default_fill, |
| 43 &arch_info_struct[1] | 44 &arch_info_struct[1] |
| 44 }, | 45 }, |
| 45 { | 46 { |
| 46 32, /* 32 bits in a word. */ | 47 32, /* 32 bits in a word. */ |
| 47 32, /* 32 bits in an address. */ | 48 32, /* 32 bits in an address. */ |
| 48 8, /* 8 bits in a byte. */ | 49 8, /* 8 bits in a byte. */ |
| 49 bfd_arch_i370, | 50 bfd_arch_i370, |
| 50 370, /* For the 370. */ | 51 370, /* For the 370. */ |
| 51 "i370", | 52 "i370", |
| 52 "i370:370", | 53 "i370:370", |
| 53 3, | 54 3, |
| 54 FALSE, /* Not the default. */ | 55 FALSE, /* Not the default. */ |
| 55 bfd_default_compatible, | 56 bfd_default_compatible, |
| 56 bfd_default_scan, | 57 bfd_default_scan, |
| 58 bfd_arch_default_fill, |
| 57 0 | 59 0 |
| 58 }, | 60 }, |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 const bfd_arch_info_type bfd_i370_arch = | 63 const bfd_arch_info_type bfd_i370_arch = |
| 62 { | 64 { |
| 63 32, /* 32 bits in a word. */ | 65 32, /* 32 bits in a word. */ |
| 64 32, /* 32 bits in an address. */ | 66 32, /* 32 bits in an address. */ |
| 65 8, /* 8 bits in a byte. */ | 67 8, /* 8 bits in a byte. */ |
| 66 bfd_arch_i370, | 68 bfd_arch_i370, |
| 67 0, /* For the 360/370 common architecture. */ | 69 0, /* For the 360/370 common architecture. */ |
| 68 "i370", | 70 "i370", |
| 69 "i370:common", | 71 "i370:common", |
| 70 3, | 72 3, |
| 71 TRUE, /* The default. */ | 73 TRUE, /* The default. */ |
| 72 bfd_default_compatible, | 74 bfd_default_compatible, |
| 73 bfd_default_scan, | 75 bfd_default_scan, |
| 76 bfd_arch_default_fill, |
| 74 & arch_info_struct[0] | 77 & arch_info_struct[0] |
| 75 }; | 78 }; |
| OLD | NEW |