m68hc11: make some vars type bfd_reloc_code_real_type

These variables only hold values from the bfd_reloc_code_real_type enum, and
are passed to functions that expect the argument to be of type
bfd_reloc_code_real_type, so it seems to make sense that there type is
bfd_reloc_code_real_type rather than int.

gas/ChangeLog:

2016-05-16  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>

	* config/tc-m68hc11.c (fixup8): Change variables type from int to
	bfd_reloc_code_real_type where appropriate.
	(fixup16): Likewise.
	(fixup8_xg): Likewise.
This commit is contained in:
Trevor Saunders 2016-05-14 15:27:26 -04:00
parent 69a1c8561a
commit e18382406c
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2016-05-16 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/tc-m68hc11.c (fixup8): Change variables type from int to
bfd_reloc_code_real_type where appropriate.
(fixup16): Likewise.
(fixup8_xg): Likewise.
2016-05-15 Maciej W. Rozycki <macro@imgtec.com>
* config/tc-sh64.c (shmedia_check_limits): Constify `msg'.

View File

@ -1604,7 +1604,7 @@ fixup8 (expressionS *oper, int mode, int opmode)
else
{
fixS *fixp;
int reloc;
bfd_reloc_code_real_type reloc;
/* Now create an 8-bit fixup. If there was some %hi, %lo
or %page modifier, generate the reloc accordingly. */
@ -1651,7 +1651,7 @@ fixup16 (expressionS *oper, int mode, int opmode ATTRIBUTE_UNUSED)
else if (oper->X_op != O_register)
{
fixS *fixp;
int reloc;
bfd_reloc_code_real_type reloc;
if ((opmode & M6811_OP_CALL_ADDR) && (mode & M6811_OP_IMM16))
reloc = BFD_RELOC_M68HC11_LO16;
@ -1721,7 +1721,7 @@ fixup8_xg (expressionS *oper, int mode, int opmode)
if (oper->X_op == O_constant)
{
fixS *fixp;
int reloc;
bfd_reloc_code_real_type reloc;
if ((opmode & M6811_OP_HIGH_ADDR) || (opmode & M6811_OP_LOW_ADDR))
{
@ -1762,7 +1762,7 @@ fixup8_xg (expressionS *oper, int mode, int opmode)
else
{
fixS *fixp;
int reloc;
bfd_reloc_code_real_type reloc;
/* Now create an 8-bit fixup. If there was some %hi, %lo
modifier, generate the reloc accordingly. */