X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gas%2Fconfig%2Ftc-m68hc11.c;h=1c36d5d98cba01efd4ee0f38bca0d21cbf467fa5;hb=508559397632e046a1f734f27d2b1971b1d172d1;hp=2f80e0adb23f3a437d7c0bd3a2946e65612daeca;hpb=e18382406ce321517210e0fdb6a8a0d417078fef;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/config/tc-m68hc11.c b/gas/config/tc-m68hc11.c index 2f80e0adb2..1c36d5d98c 100644 --- a/gas/config/tc-m68hc11.c +++ b/gas/config/tc-m68hc11.c @@ -1,5 +1,5 @@ /* tc-m68hc11.c -- Assembler code for the Motorola 68HC11 & 68HC12. - Copyright (C) 1999-2016 Free Software Foundation, Inc. + Copyright (C) 1999-2019 Free Software Foundation, Inc. Written by Stephane Carrez (stcarrez@nerim.fr) XGATE and S12X added by James Murray (jsm@jsm-net.demon.co.uk) @@ -241,7 +241,7 @@ static void s_m68hc11_mark_symbol (int); dbcc -> db!cc +3 jmp L - Setting the flag forbidds this. */ + Setting the flag forbids this. */ static short flag_fixed_branches = 0; /* Force to use long jumps (absolute) instead of relative branches. */ @@ -329,11 +329,11 @@ struct option md_longopts[] = { #define OPTION_FORCE_LONG_BRANCH (OPTION_MD_BASE) {"force-long-branches", no_argument, NULL, OPTION_FORCE_LONG_BRANCH}, - {"force-long-branchs", no_argument, NULL, OPTION_FORCE_LONG_BRANCH}, /* Misspelt version kept for backwards compatibility. */ + {"force-long-branchs", no_argument, NULL, OPTION_FORCE_LONG_BRANCH}, /* Misspelled version kept for backwards compatibility. */ #define OPTION_SHORT_BRANCHES (OPTION_MD_BASE + 1) {"short-branches", no_argument, NULL, OPTION_SHORT_BRANCHES}, - {"short-branchs", no_argument, NULL, OPTION_SHORT_BRANCHES}, /* Misspelt version kept for backwards compatibility. */ + {"short-branchs", no_argument, NULL, OPTION_SHORT_BRANCHES}, /* Misspelled version kept for backwards compatibility. */ #define OPTION_STRICT_DIRECT_MODE (OPTION_MD_BASE + 2) {"strict-direct-mode", no_argument, NULL, OPTION_STRICT_DIRECT_MODE}, @@ -555,7 +555,7 @@ md_parse_option (int c, const char *arg) current_architecture = cpu6812 | cpu6812s | cpu9s12x; else if ((strcasecmp (arg, "m9s12xg") == 0) || (strcasecmp (arg, "xgate") == 0)) - /* xgate for backwards compatability */ + /* xgate for backwards compatibility */ current_architecture = cpuxgate; else as_bad (_("Option `%s' is not recognized."), arg); @@ -583,7 +583,7 @@ md_atof (int type, char *litP, int *sizeP) valueT md_section_align (asection *seg, valueT addr) { - int align = bfd_get_section_alignment (stdoutput, seg); + int align = bfd_section_alignment (seg); return ((addr + (1 << align) - 1) & -(1 << align)); } @@ -1710,7 +1710,7 @@ fixup24 (expressionS *oper, int mode, int opmode ATTRIBUTE_UNUSED) } /* XGATE Put a 1 byte expression described by 'oper'. If this expression - containts unresolved symbols, generate an 8-bit fixup. */ + contains unresolved symbols, generate an 8-bit fixup. */ static void fixup8_xg (expressionS *oper, int mode, int opmode) { @@ -2287,6 +2287,7 @@ build_indexed_byte (operand *op, int format ATTRIBUTE_UNUSED, int move_insn) default: as_bad (_("Invalid accumulator register.")); + /* Fall through. */ case REG_D: byte = 0xE6; @@ -3874,7 +3875,7 @@ m68hc11_relax_frag (segT seg ATTRIBUTE_UNUSED, fragS *fragP, const relax_typeS *table = TC_GENERIC_RELAX_TABLE; /* We only have to cope with frags as prepared by - md_estimate_size_before_relax. The STATE_BITS16 case may geet here + md_estimate_size_before_relax. The STATE_BITS16 case may get here because of the different reasons that it's not relaxable. */ switch (fragP->fr_subtype) {