aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-hppa.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2005-02-19 08:56:08 +0000
committerAlan Modra <amodra@gmail.com>2005-02-19 08:56:08 +0000
commitb5682e5666232dbae25d81089f71a68ed4146ffc (patch)
treeb75fd98017b9f80de60ae34d0806314d2106ba64 /gas/config/tc-hppa.h
parentc187109005662c6b91a6ae5ed3b9ecacd798d61f (diff)
downloadgdb-b5682e5666232dbae25d81089f71a68ed4146ffc.zip
gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.tar.gz
gdb-b5682e5666232dbae25d81089f71a68ed4146ffc.tar.bz2
* config/tc-hppa.h (TC_EQUAL_IN_INSN): Delete.
* read.c (read_a_source_file): Remove TC_EQUAL_IN_INSN test. * doc/internals.texi (TC_EQUAL_IN_INSN): Delete.
Diffstat (limited to 'gas/config/tc-hppa.h')
-rw-r--r--gas/config/tc-hppa.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/gas/config/tc-hppa.h b/gas/config/tc-hppa.h
index 4b43a7f..666d03b 100644
--- a/gas/config/tc-hppa.h
+++ b/gas/config/tc-hppa.h
@@ -1,6 +1,6 @@
/* tc-hppa.h -- Header file for the PA
Copyright 1989, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002,
- 2003 Free Software Foundation, Inc.
+ 2003, 2004, 2005 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -119,15 +119,9 @@ extern const char hppa_symbol_chars[];
parse_cons_expression_hppa (EXP)
#define TC_CONS_FIX_NEW cons_fix_new_hppa
-/* On the PA, an equal sign often appears as a condition or nullification
- completer in an instruction. This can be detected by checking the
- previous character, if the character is a comma, then the equal is
- being used as part of an instruction. */
-#define TC_EQUAL_IN_INSN(C, PTR) ((C) == ',')
-
-/* Similarly for an exclamation point. It is used in FP comparison
- instructions and as an end of line marker. When used in an instruction
- it will always follow a comma. */
+/* On the PA, an exclamation point can appear in an instruction. It is
+ used in FP comparison instructions and as an end of line marker.
+ When used in an instruction it will always follow a comma. */
#define TC_EOL_IN_INSN(PTR) (*(PTR) == '!' && (PTR)[-1] == ',')
int hppa_fix_adjustable PARAMS((struct fix *));