summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/gas/read.h
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.25/gas/read.h')
-rw-r--r--binutils-2.25/gas/read.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/binutils-2.25/gas/read.h b/binutils-2.25/gas/read.h
index 81b958ac..b85d3a9a 100644
--- a/binutils-2.25/gas/read.h
+++ b/binutils-2.25/gas/read.h
@@ -1,7 +1,5 @@
/* read.h - of read.c
- Copyright 1986, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2012
- Free Software Foundation, Inc.
+ Copyright (C) 1986-2014 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -95,6 +93,11 @@ enum linkonce_type {
extern char original_case_string[];
#endif
+#ifndef TC_PARSE_CONS_RETURN_TYPE
+#define TC_PARSE_CONS_RETURN_TYPE bfd_reloc_code_real_type
+#define TC_PARSE_CONS_RETURN_NONE BFD_RELOC_NONE
+#endif
+
extern void pop_insert (const pseudo_typeS *);
extern unsigned int get_stab_string_offset
(const char *string, const char *stabstr_secname);
@@ -111,7 +114,10 @@ extern void add_include_dir (char *path);
extern void cons (int nbytes);
extern void demand_empty_rest_of_line (void);
extern void emit_expr (expressionS *exp, unsigned int nbytes);
-extern void emit_expr_fix (expressionS *, unsigned int, fragS *, char *);
+extern void emit_expr_with_reloc (expressionS *exp, unsigned int nbytes,
+ TC_PARSE_CONS_RETURN_TYPE);
+extern void emit_expr_fix (expressionS *, unsigned int, fragS *, char *,
+ TC_PARSE_CONS_RETURN_TYPE);
extern void equals (char *sym_name, int reassign);
extern void float_cons (int float_type);
extern void ignore_rest_of_line (void);