* aout-arm.c (MY_swap_std_reloc_in): Remove unused r_length.
[deliverable/binutils-gdb.git] / gas / read.h
index f0691ae7d38bb7a511b07f3d6bf6765fb7ebd447..e2f51ef666f1ee2de321484c0f4c4c2b67b5ba73 100644 (file)
@@ -16,7 +16,7 @@
 
    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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+   the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 extern char *input_line_pointer;/* -> char we are parsing now. */
 
@@ -47,9 +47,11 @@ extern char *input_line_pointer;/* -> char we are parsing now. */
 #define is_a_char(c)   (((unsigned)(c)) <= CHAR_MASK)
 #endif /* is_a_char() */
 
-extern const char lex_type[];
+extern char lex_type[];
 extern char is_end_of_line[];
 
+extern int target_big_endian;
+
 /* These are initialized by the CPU specific target files (tc-*.c).  */
 extern const char comment_chars[];
 extern const char line_comment_chars[];
@@ -58,6 +60,15 @@ extern const char line_separator_chars[];
 /* This flag whether to generate line info for asm file */
 extern int generate_asm_lineno;
 
+/* The offset in the absolute section.  */
+extern addressT abs_section_offset;
+
+/* The MRI label on a line, used by some of the MRI pseudo-ops.  */
+extern symbolS *mri_line_label;
+
+/* This is used to support MRI common sections.  */
+extern symbolS *mri_common_symbol;
+
 unsigned int get_stab_string_offset PARAMS ((const char *string,
                                             const char *stabstr_secname));
 
@@ -86,7 +97,9 @@ void s_desc PARAMS ((int));
 void s_else PARAMS ((int arg));
 void s_end PARAMS ((int arg));
 void s_endif PARAMS ((int arg));
+void s_fail PARAMS ((int));
 void s_fill PARAMS ((int));
+void s_float_space PARAMS ((int mult));
 void s_globl PARAMS ((int arg));
 void s_if PARAMS ((int arg));
 void s_ifdef PARAMS ((int arg));
@@ -95,10 +108,12 @@ void s_ignore PARAMS ((int arg));
 void s_include PARAMS ((int arg));
 void s_lcomm PARAMS ((int needs_align));
 void s_lsym PARAMS ((int));
+void s_mri_common PARAMS ((int));
 void s_org PARAMS ((int));
 void s_set PARAMS ((int));
 void s_space PARAMS ((int mult));
 void s_stab PARAMS ((int what));
+void s_struct PARAMS ((int));
 void s_text PARAMS ((int));
 void stringer PARAMS ((int append_zero));
 void s_xstab PARAMS ((int what));
This page took 0.024754 seconds and 4 git commands to generate.