Deleted Added
full compact
20c20
< 02111-1307, USA. */
---
> 02111-1307, USA. */
85c85
< /* Pseudo-ops which must be defined. */
---
> /* Pseudo-ops which must be defined. */
124c124
< The table is sorted. Suitable for searching by a binary search. */
---
> The table is sorted. Suitable for searching by a binary search. */
315c315
< CONST char *md_shortopts = "A:m:kVQ:";
---
> const char *md_shortopts = "A:m:kVQ:";
563c563
< max = (((addressT) 1 << (operand->bits - 1))<<1) - 1;
---
> max = (((addressT) 1 << (operand->bits - 1)) << 1) - 1;
594c594
< insn += (offset - 1)/8;
---
> insn += (offset - 1) / 8;
727c727
< s390_exp_compare(exp1, exp2)
---
> s390_exp_compare (exp1, exp2)
774,775c774,775
< return 0;
< }
---
> return 0;
> }
855c855
< && s390_exp_compare(exp_p, &lpe->ex) != 0)
---
> && s390_exp_compare (exp_p, &lpe->ex) != 0)
869c869
< lpe = (struct s390_lpe *) xmalloc(sizeof (struct s390_lpe));
---
> lpe = (struct s390_lpe *) xmalloc (sizeof (struct s390_lpe));
880c880
< exp_p->X_add_number*sizeof (LITTLENUM_TYPE));
---
> exp_p->X_add_number * sizeof (LITTLENUM_TYPE));
891c891
< lp_sym = symbol_make(tmp_name);
---
> lp_sym = symbol_make (tmp_name);
897c897
< lpe->sym = symbol_make(tmp_name);
---
> lpe->sym = symbol_make (tmp_name);
987c987
< input_line_pointer--; /* Put terminator back into stream. */
---
> input_line_pointer--; /* Put terminator back into stream. */
1022c1022,1023
< while (ISSPACE (*str)) str++;
---
> while (ISSPACE (*str))
> str++;
1050c1051,1052
< if (! register_name (&ex)) /* parse the operand */
---
> /* Parse the operand. */
> if (! register_name (&ex))
1400c1402
<
---
>
1456c1458
< return; /* nothing to be done */
---
> return; /* Nothing to be done. */
1495c1497
< lpe->ex.X_add_number*sizeof (LITTLENUM_TYPE));
---
> lpe->ex.X_add_number * sizeof (LITTLENUM_TYPE));
1593c1595
< if (*name == '_' && *(name+1) == 'G'
---
> if (*name == '_' && *(name + 1) == 'G'
1595,1604c1597,1606
< {
< if (!GOT_symbol)
< {
< if (symbol_find (name))
< as_bad (_("GOT already in symbol table"));
< GOT_symbol = symbol_new (name, undefined_section,
< (valueT) 0, &zero_address_frag);
< }
< return GOT_symbol;
< }
---
> {
> if (!GOT_symbol)
> {
> if (symbol_find (name))
> as_bad (_("GOT already in symbol table"));
> GOT_symbol = symbol_new (name, undefined_section,
> (valueT) 0, &zero_address_frag);
> }
> return GOT_symbol;
> }
1626,1627c1628,1629
< tc_s390_fix_adjustable(fixP)
< fixS * fixP;
---
> tc_s390_fix_adjustable (fixP)
> fixS *fixP;
1634,1636c1636,1637
< /* Don't adjust pc-relative references to merge sections. */
< if ((S_GET_SEGMENT(fixP->fx_addsy)->flags & SEC_MERGE) != 0
< && fixP->fx_pcrel)
---
> /* Don't adjust references to merge sections. */
> if ((S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0)
1701c1702
< valueT value = * valP;
---
> valueT value = *valP;
1705c1706
< if (fixP->fx_subsy != NULL)
---
> if (fixP->fx_subsy != NULL)
1715c1716
< value -= S_GET_VALUE(fixP->fx_subsy);
---
> value -= S_GET_VALUE (fixP->fx_subsy);
1720,1721c1721,1722
<
< if (fixP->fx_addsy != NULL)
---
>
> if (fixP->fx_addsy != NULL)
1725c1726
< && SEG_NORMAL (S_GET_SEGMENT(fixP->fx_addsy)))
---
> && SEG_NORMAL (S_GET_SEGMENT (fixP->fx_addsy)))
1728c1729
< || (!fixP->fx_pcrel
---
> || (!fixP->fx_pcrel
1732c1733
< && TC_FIX_ADJUSTABLE(fixP)))
---
> && TC_FIX_ADJUSTABLE (fixP)))
1968,1969c1969,1970
< _("cannot represent relocation type %s"),
< bfd_get_reloc_code_name (code));
---
> _("cannot represent relocation type %s"),
> bfd_get_reloc_code_name (code));