diff options
Diffstat (limited to 'bfd/cpu-s390.c')
-rw-r--r-- | bfd/cpu-s390.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bfd/cpu-s390.c b/bfd/cpu-s390.c index 8e379364c7d..f906472435d 100644 --- a/bfd/cpu-s390.c +++ b/bfd/cpu-s390.c @@ -25,19 +25,20 @@ #define N(bits, number, print, is_default, next) \ { \ - bits, /* bits in a word */ \ - bits, /* bits in an address */ \ - 8, /* bits in a byte */ \ + bits, /* Bits in a word. */ \ + bits, /* Bits in an address. */ \ + 8, /* Bits in a byte. */ \ bfd_arch_s390, \ number, \ "s390", \ print, \ - 3, /* section alignment power */ \ + 3, /* Section alignment power */ \ is_default, \ bfd_default_compatible, \ bfd_default_scan, \ bfd_arch_default_fill, \ - next \ + next, \ + 0 /* Maximum offset of a reloc from the start of an insn. */ \ } #if BFD_DEFAULT_TARGET_SIZE == 64 |