diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2010-10-21 19:11:14 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2010-10-21 19:11:14 +0000 |
commit | dfd2f2d4bbb5f23cd14bca63b73779ffbac5c0f5 (patch) | |
tree | 506464413c40d2c6a4a46d04892a9415cb886522 /contrib/binutils/gas/write.h | |
parent | ae36f9474fd730d29afb8b25c92dba33dedf7480 (diff) | |
parent | 7a815afd9b5121ee0f65dc1e1de1c0de6de97679 (diff) |
Merge ^vendor/binutils/dist@214082 into contrib/binutils.
Notes
Notes:
svn path=/projects/binutils-2.17/; revision=214157
Diffstat (limited to 'contrib/binutils/gas/write.h')
-rw-r--r-- | contrib/binutils/gas/write.h | 57 |
1 files changed, 5 insertions, 52 deletions
diff --git a/contrib/binutils/gas/write.h b/contrib/binutils/gas/write.h index 0e0f59f8f70b..1f9b72dbf265 100644 --- a/contrib/binutils/gas/write.h +++ b/contrib/binutils/gas/write.h @@ -1,6 +1,6 @@ /* write.h - Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001 - Free Software Foundation, Inc. + Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, + 2002, 2003, 2005, 2006 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -16,8 +16,8 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free - Software Foundation, 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA + 02110-1301, USA. */ #ifndef __write_h__ #define __write_h__ @@ -28,16 +28,6 @@ #endif #endif /* TC_I960 */ -#ifndef BFD_ASSEMBLER - -#ifndef LOCAL_LABEL -#define LOCAL_LABEL(name) (name [0] == 'L' ) -#endif - -#define S_LOCAL_NAME(s) (LOCAL_LABEL (S_GET_NAME (s))) - -#endif /* ! BFD_ASSEMBLER */ - /* This is the name of a fake symbol which will never appear in the assembler output. S_IS_LOCAL detects it because of the \001. */ #ifndef FAKE_LABEL_NAME @@ -120,15 +110,7 @@ struct fix processing. */ bit_fixS *fx_bit_fixP; -#ifdef BFD_ASSEMBLER bfd_reloc_code_real_type fx_r_type; -#else -#ifdef NEED_FX_R_TYPE - /* Hack for machines where the type of reloc can't be - worked out by looking at how big it is. */ - int fx_r_type; -#endif -#endif /* This field is sort of misnamed. It appears to be a sort of random scratch field, for use by the back ends. The main gas code doesn't @@ -165,53 +147,24 @@ typedef struct fix fixS; extern int finalize_syms; extern symbolS *abs_section_sym; extern addressT dot_value; - -#ifndef BFD_ASSEMBLER -extern char *next_object_file_charP; - -#ifndef MANY_SEGMENTS -COMMON fixS *text_fix_root, *text_fix_tail; /* Chains fixSs. */ -COMMON fixS *data_fix_root, *data_fix_tail; /* Chains fixSs. */ -COMMON fixS *bss_fix_root, *bss_fix_tail; /* Chains fixSs. */ -extern struct frag *text_last_frag; /* Last frag in segment. */ -extern struct frag *data_last_frag; /* Last frag in segment. */ -#endif -COMMON fixS **seg_fix_rootP, **seg_fix_tailP; /* -> one of above. */ -#endif - extern long string_byte_count; extern int section_alignment[]; -extern bit_fixS *bit_fix_new - (int size, int offset, long base_type, long base_adj, long min, - long max, long add); extern void append (char **charPP, char *fromP, unsigned long length); extern void record_alignment (segT seg, int align); extern int get_recorded_alignment (segT seg); extern void subsegs_finish (void); extern void write_object_file (void); extern long relax_frag (segT, fragS *, long); -extern int relax_segment (struct frag * seg_frag_root, segT seg_type); - +extern int relax_segment (struct frag *, segT, int); extern void number_to_chars_littleendian (char *, valueT, int); extern void number_to_chars_bigendian (char *, valueT, int); - -#ifdef BFD_ASSEMBLER extern fixS *fix_new (fragS * frag, int where, int size, symbolS * add_symbol, offsetT offset, int pcrel, bfd_reloc_code_real_type r_type); extern fixS *fix_new_exp (fragS * frag, int where, int size, expressionS *exp, int pcrel, bfd_reloc_code_real_type r_type); -#else -extern fixS *fix_new - (fragS * frag, int where, int size, symbolS * add_symbol, - offsetT offset, int pcrel, int r_type); -extern fixS *fix_new_exp - (fragS * frag, int where, int size, expressionS *exp, int pcrel, - int r_type); -#endif - extern void write_print_statistics (FILE *); #endif /* __write_h__ */ |