diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2013-11-18 12:16:16 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2013-11-18 12:16:16 -0800 |
commit | c06ec7240faae97834f889f80e493f15514877d8 (patch) | |
tree | 391ff41be0117d8555d07b430f7e7a1784e72fbf | |
parent | f49fe902baaeff0cc73e86330ed0468d48203046 (diff) | |
download | gdb-c06ec7240faae97834f889f80e493f15514877d8.zip gdb-c06ec7240faae97834f889f80e493f15514877d8.tar.gz gdb-c06ec7240faae97834f889f80e493f15514877d8.tar.bz2 |
Add a dummy "int bnd_prefix" argument
* config/tc-i386.c (lex_got): Add a dummy "int bnd_prefix"
argument.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index af9b771..fddf422 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2013-11-18 H.J. Lu <hongjiu.lu@intel.com> + + * config/tc-i386.c (lex_got): Add a dummy "int bnd_prefix" + argument. + 2013-11-18 Renlin Li <Renlin.Li@arm.com> * config/tc-arm.c (arm_archs): New armv7ve architecture option. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 7c26bca..c6e1dba 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -7345,7 +7345,7 @@ x86_address_bytes (void) #if !(defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) || defined (OBJ_MACH_O)) \ || defined (LEX_AT) -# define lex_got(reloc, adjust, types) NULL +# define lex_got(reloc, adjust, types, bnd_prefix) NULL #else /* Parse operands of the form <symbol>@GOTOFF+<nnn> @@ -7529,7 +7529,8 @@ lex_got (enum bfd_reloc_code_real *rel, static char * lex_got (enum bfd_reloc_code_real *rel ATTRIBUTE_UNUSED, int *adjust ATTRIBUTE_UNUSED, - i386_operand_type *types ATTRIBUTE_UNUSED) + i386_operand_type *types, + int bnd_prefix ATTRIBUTE_UNUSED) { static const struct { |