aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-i386.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-03-13 04:37:13 +0000
committerAlan Modra <amodra@gmail.com>2001-03-13 04:37:13 +0000
commitf3c180aedc20556463df4016321864567c09a7b9 (patch)
tree8a36c2dd03b6104a539f47ff0424111e15575339 /gas/config/tc-i386.h
parentbf62e5b49cd2158ea2552bc4fb4f713b1baa1b78 (diff)
downloadfsf-binutils-gdb-f3c180aedc20556463df4016321864567c09a7b9.zip
fsf-binutils-gdb-f3c180aedc20556463df4016321864567c09a7b9.tar.gz
fsf-binutils-gdb-f3c180aedc20556463df4016321864567c09a7b9.tar.bz2
Support for @GOTOFF in .long expressions.
Diffstat (limited to 'gas/config/tc-i386.h')
-rw-r--r--gas/config/tc-i386.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h
index 9e53ad6..71e0c88 100644
--- a/gas/config/tc-i386.h
+++ b/gas/config/tc-i386.h
@@ -155,6 +155,15 @@ extern int tc_coff_sizemachdep PARAMS ((fragS *frag));
#endif /* ! BFD_ASSEMBLER */
+#ifndef LEX_AT
+#define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) x86_cons (EXP, NBYTES)
+extern void x86_cons PARAMS ((expressionS *, int));
+
+#define TC_CONS_FIX_NEW(FRAG,OFF,LEN,EXP) x86_cons_fix_new(FRAG, OFF, LEN, EXP)
+extern void x86_cons_fix_new
+ PARAMS ((fragS *, unsigned int, unsigned int, expressionS *));
+#endif
+
#define TC_FORCE_RELOCATION(fixp) tc_i386_force_relocation(fixp)
extern int tc_i386_force_relocation PARAMS ((struct fix *));