diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-07-27 14:08:08 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-07-27 14:08:08 +0000 |
commit | 17d4e2a2a84235bd39a6d0405e38a4969d12bfa6 (patch) | |
tree | aee5bbb5eb4170926fe02e15aeb79b1d57ff0cd5 /gas | |
parent | 2f5028a7c8f6a9c9fb2d32a6962774b6fc87eb21 (diff) | |
download | gdb-17d4e2a2a84235bd39a6d0405e38a4969d12bfa6.zip gdb-17d4e2a2a84235bd39a6d0405e38a4969d12bfa6.tar.gz gdb-17d4e2a2a84235bd39a6d0405e38a4969d12bfa6.tar.bz2 |
2007-07-27 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (handle_large_common): Declare only for ELF.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0d0a3ff..bd65c4b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2007-07-27 H.J. Lu <hongjiu.lu@intel.com> + + * config/tc-i386.c (handle_large_common): Declare only for ELF. + 2005-07-27 Jan Beulich <jbeulich@novell.com> * config/tc-ia64.h (unw_r_record): Change type of fr_mem to unsigned diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 139e403..9482311 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -111,6 +111,9 @@ static void output_disp PARAMS ((fragS *insn_start_frag, #ifndef I386COFF static void s_bss PARAMS ((int)); #endif +#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) +static void handle_large_common (int small ATTRIBUTE_UNUSED); +#endif static const char *default_arch = DEFAULT_ARCH; @@ -305,7 +308,6 @@ static int allow_naked_reg = 0; leave, push, and pop instructions so that gcc has the same stack frame as in 32 bit mode. */ static char stackop_size = '\0'; -static void handle_large_common (int small ATTRIBUTE_UNUSED); /* Non-zero to optimize code alignment. */ int optimize_align_code = 1; |