aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-tilegx.h2
-rw-r--r--gas/config/tc-tilepro.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index d7e5b4a..2939d32 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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.
diff --git a/gas/config/tc-tilegx.h b/gas/config/tc-tilegx.h
index bdeecdc..6de89da 100644
--- a/gas/config/tc-tilegx.h
+++ b/gas/config/tc-tilegx.h
@@ -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 *);
diff --git a/gas/config/tc-tilepro.h b/gas/config/tc-tilepro.h
index edb51d0..92d31b1 100644
--- a/gas/config/tc-tilepro.h
+++ b/gas/config/tc-tilepro.h
@@ -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 *);