aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2014-04-16 22:58:15 +0930
committerAlan Modra <amodra@gmail.com>2014-04-16 23:00:29 +0930
commit8e63ef2f2539b7fd3f81f11d930b8bdf8daa9da1 (patch)
tree2b7c8659d06626b2b50267175c26b576a136abd1 /gas
parente89d3dee76bc7f2d4b967ce9238f7f22e0a7c147 (diff)
downloadgdb-8e63ef2f2539b7fd3f81f11d930b8bdf8daa9da1.zip
gdb-8e63ef2f2539b7fd3f81f11d930b8bdf8daa9da1.tar.gz
gdb-8e63ef2f2539b7fd3f81f11d930b8bdf8daa9da1.tar.bz2
Fix more fallout from TC_CONS_FIX_NEW change
* config/tc-tilegx.h (TC_CONS_FIX_NEW): Add RELOC arg. * config/tc-tilepro.h (TC_CONS_FIX_NEW): Likewise.
Diffstat (limited to 'gas')
-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 *);