| OLD | NEW |
| 1 /* BFD support for the M16C/M32C processors. | 1 /* BFD support for the M16C/M32C processors. |
| 2 Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. | 2 Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. |
| 3 | 3 |
| 4 This file is part of BFD, the Binary File Descriptor library. | 4 This file is part of BFD, the Binary File Descriptor library. |
| 5 | 5 |
| 6 This program is free software; you can redistribute it and/or modify | 6 This program is free software; you can redistribute it and/or modify |
| 7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
| 8 the Free Software Foundation; either version 3 of the License, or | 8 the Free Software Foundation; either version 3 of the License, or |
| 9 (at your option) any later version. | 9 (at your option) any later version. |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 32, /* bits per address */ | 42 32, /* bits per address */ |
| 43 8, /* bits per byte */ | 43 8, /* bits per byte */ |
| 44 bfd_arch_m32c, /* architecture */ | 44 bfd_arch_m32c, /* architecture */ |
| 45 bfd_mach_m32c, /* machine */ | 45 bfd_mach_m32c, /* machine */ |
| 46 "m32c", /* architecture name */ | 46 "m32c", /* architecture name */ |
| 47 "m32c", /* printable name */ | 47 "m32c", /* printable name */ |
| 48 3, /* section align power */ | 48 3, /* section align power */ |
| 49 FALSE, /* the default ? */ | 49 FALSE, /* the default ? */ |
| 50 bfd_default_compatible, /* architecture comparison fn */ | 50 bfd_default_compatible, /* architecture comparison fn */ |
| 51 m32c_scan, /* string to architecture convert fn */ | 51 m32c_scan, /* string to architecture convert fn */ |
| 52 bfd_arch_default_fill, /* Default fill. */ |
| 52 NULL /* next in list */ | 53 NULL /* next in list */ |
| 53 }, | 54 }, |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 const bfd_arch_info_type bfd_m32c_arch = | 57 const bfd_arch_info_type bfd_m32c_arch = |
| 57 { | 58 { |
| 58 32, /* Bits per word. */ | 59 32, /* Bits per word. */ |
| 59 32, /* Bits per address. */ | 60 32, /* Bits per address. */ |
| 60 8, /* Bits per byte. */ | 61 8, /* Bits per byte. */ |
| 61 bfd_arch_m32c, /* Architecture. */ | 62 bfd_arch_m32c, /* Architecture. */ |
| 62 bfd_mach_m16c, /* Machine. */ | 63 bfd_mach_m16c, /* Machine. */ |
| 63 "m32c", /* Architecture name. */ | 64 "m32c", /* Architecture name. */ |
| 64 "m16c", /* Printable name. */ | 65 "m16c", /* Printable name. */ |
| 65 4, /* Section align power. */ | 66 4, /* Section align power. */ |
| 66 TRUE, /* The default ? */ | 67 TRUE, /* The default ? */ |
| 67 bfd_default_compatible, /* Architecture comparison fn. */ | 68 bfd_default_compatible, /* Architecture comparison fn. */ |
| 68 m32c_scan, /* String to architecture convert fn. */ | 69 m32c_scan, /* String to architecture convert fn. */ |
| 70 bfd_arch_default_fill, /* Default fill. */ |
| 69 &arch_info_struct[0], /* Next in list. */ | 71 &arch_info_struct[0], /* Next in list. */ |
| 70 }; | 72 }; |
| OLD | NEW |