diff options
Diffstat (limited to 'binutils-2.22/gas/frags.h')
-rw-r--r-- | binutils-2.22/gas/frags.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/binutils-2.22/gas/frags.h b/binutils-2.22/gas/frags.h index dd247f9..f5846be 100644 --- a/binutils-2.22/gas/frags.h +++ b/binutils-2.22/gas/frags.h @@ -1,6 +1,7 @@ /* frags.h - Header file for the frag concept. Copyright 1987, 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, - 2002, 2003, 2004, 2005, 2006, 2007, 2010 Free Software Foundation, Inc. + 2002, 2003, 2004, 2005, 2006, 2007, 2010, 2011, 2012 + Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -100,6 +101,9 @@ struct frag { #ifdef TC_FRAG_TYPE TC_FRAG_TYPE tc_frag_data; #endif +#ifdef OBJ_FRAG_TYPE + OBJ_FRAG_TYPE obj_frag_data; +#endif /* Data begins here. */ char fr_literal[1]; @@ -151,6 +155,6 @@ char *frag_var (relax_stateT type, offsetT offset, char *opcode); -bfd_boolean frag_offset_fixed_p (const fragS *, const fragS *, bfd_vma *); +bfd_boolean frag_offset_fixed_p (const fragS *, const fragS *, offsetT *); #endif /* FRAGS_H */ |