OLD | NEW |
1 /* symbols.h - | 1 /* symbols.h - |
2 Copyright 1987, 1990, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2001, | 2 Copyright 1987, 1990, 1992, 1993, 1994, 1995, 1997, 1999, 2000, 2001, |
3 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 3 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
4 | 4 |
5 This file is part of GAS, the GNU Assembler. | 5 This file is part of GAS, the GNU Assembler. |
6 | 6 |
7 GAS is free software; you can redistribute it and/or modify | 7 GAS is free software; you can redistribute it and/or modify |
8 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
9 the Free Software Foundation; either version 3, or (at your option) | 9 the Free Software Foundation; either version 3, or (at your option) |
10 any later version. | 10 any later version. |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 extern int symbol_written_p (symbolS *); | 191 extern int symbol_written_p (symbolS *); |
192 extern void symbol_mark_resolved (symbolS *); | 192 extern void symbol_mark_resolved (symbolS *); |
193 extern int symbol_resolved_p (symbolS *); | 193 extern int symbol_resolved_p (symbolS *); |
194 extern int symbol_section_p (symbolS *); | 194 extern int symbol_section_p (symbolS *); |
195 extern int symbol_equated_p (symbolS *); | 195 extern int symbol_equated_p (symbolS *); |
196 extern int symbol_equated_reloc_p (symbolS *); | 196 extern int symbol_equated_reloc_p (symbolS *); |
197 extern int symbol_constant_p (symbolS *); | 197 extern int symbol_constant_p (symbolS *); |
198 extern int symbol_shadow_p (symbolS *); | 198 extern int symbol_shadow_p (symbolS *); |
199 extern asymbol *symbol_get_bfdsym (symbolS *); | 199 extern asymbol *symbol_get_bfdsym (symbolS *); |
200 extern void symbol_set_bfdsym (symbolS *, asymbol *); | 200 extern void symbol_set_bfdsym (symbolS *, asymbol *); |
| 201 extern int symbol_same_p (symbolS *, symbolS *); |
201 | 202 |
202 #ifdef OBJ_SYMFIELD_TYPE | 203 #ifdef OBJ_SYMFIELD_TYPE |
203 OBJ_SYMFIELD_TYPE *symbol_get_obj (symbolS *); | 204 OBJ_SYMFIELD_TYPE *symbol_get_obj (symbolS *); |
204 void symbol_set_obj (symbolS *, OBJ_SYMFIELD_TYPE *); | 205 void symbol_set_obj (symbolS *, OBJ_SYMFIELD_TYPE *); |
205 #endif | 206 #endif |
206 | 207 |
207 #ifdef TC_SYMFIELD_TYPE | 208 #ifdef TC_SYMFIELD_TYPE |
208 TC_SYMFIELD_TYPE *symbol_get_tc (symbolS *); | 209 TC_SYMFIELD_TYPE *symbol_get_tc (symbolS *); |
209 void symbol_set_tc (symbolS *, TC_SYMFIELD_TYPE *); | 210 void symbol_set_tc (symbolS *, TC_SYMFIELD_TYPE *); |
210 #endif | 211 #endif |
OLD | NEW |