diff options
Diffstat (limited to 'gas/config/tc-ns32k.h')
-rw-r--r-- | gas/config/tc-ns32k.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/tc-ns32k.h b/gas/config/tc-ns32k.h index 417395d..e547bf5 100644 --- a/gas/config/tc-ns32k.h +++ b/gas/config/tc-ns32k.h @@ -128,12 +128,12 @@ extern const struct relax_type md_relax_table[]; } \ while (0) -#define TC_FIX_DATA_PRINT(FILE, FIXP) \ +#define TC_FIX_DATA_PRINT(FILE, FIX) \ do \ { \ fprintf ((FILE), "opcode_frag=%ld, operand offset=%d, bsr=%d\n", \ - (unsigned long) fix_opcode_frag (FIXP), \ - fix_opcode_offset (FIXP), \ - fix_bsr (FIXP)); \ + (unsigned long) fix_opcode_frag (FIX), \ + fix_opcode_offset (FIX), \ + fix_bsr (FIX)); \ } \ while (0) |