Fix more fallout from TC_CONS_FIX_NEW change
authorAlan Modra <amodra@gmail.com>
Wed, 16 Apr 2014 13:28:15 +0000 (22:58 +0930)
committerAlan Modra <amodra@gmail.com>
Wed, 16 Apr 2014 13:30:29 +0000 (23:00 +0930)
* config/tc-tilegx.h (TC_CONS_FIX_NEW): Add RELOC arg.
* config/tc-tilepro.h (TC_CONS_FIX_NEW): Likewise.

gas/ChangeLog
gas/config/tc-tilegx.h
gas/config/tc-tilepro.h

index d7e5b4a..2939d32 100644 (file)
@@ -1,3 +1,8 @@
+2014-04-16  Alan Modra  <amodra@gmail.com>
+
+       * config/tc-tilegx.h (TC_CONS_FIX_NEW): Add RELOC arg.
+       * config/tc-tilepro.h (TC_CONS_FIX_NEW): Likewise.
+
 2014-04-10  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
 
        * config/tc-avr.c: Add new flag mlink-relax.
index bdeecdc..6de89da 100644 (file)
@@ -53,7 +53,7 @@ struct tilegx_operand;
 
 extern void tilegx_cons_fix_new (struct frag *, int,
                                 int, struct expressionS *);
-#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \
+#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP, RELOC)       \
   tilegx_cons_fix_new (FRAG, WHERE, NBYTES, EXP)
 
 extern int tilegx_parse_name (char *, expressionS *, char *);
index edb51d0..92d31b1 100644 (file)
@@ -54,7 +54,7 @@ struct tilepro_operand;
 extern void tilepro_cons_fix_new (struct frag *, int,
                                  int, struct expressionS *);
 
-#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP)      \
+#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP, RELOC)       \
   tilepro_cons_fix_new (FRAG, WHERE, NBYTES, EXP)
 
 extern int tilepro_parse_name (char *, expressionS *, char *);