aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1997-04-04 22:49:21 +0000
committerIan Lance Taylor <ian@airs.com>1997-04-04 22:49:21 +0000
commitdc966dadf7a00e4ab13d28d8fbdc3abc45b05f0b (patch)
tree8c06ffb8de7f994d59647660093a6b1b37146106 /gas
parent5c11dba28a5afc2e634aa7d227889876bbc96d0b (diff)
downloadgdb-dc966dadf7a00e4ab13d28d8fbdc3abc45b05f0b.zip
gdb-dc966dadf7a00e4ab13d28d8fbdc3abc45b05f0b.tar.gz
gdb-dc966dadf7a00e4ab13d28d8fbdc3abc45b05f0b.tar.bz2
* config/tc-hppa.h (TC_EOL_IN_INSN): Check explicitly for '!',
rather than for any end of line character.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog3
-rw-r--r--gas/config/tc-hppa.h30
2 files changed, 24 insertions, 9 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index f9525eb..27c5e21 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,8 @@
Fri Apr 4 13:26:10 1997 Ian Lance Taylor <ian@cygnus.com>
+ * config/tc-hppa.h (TC_EOL_IN_INSN): Check explicitly for '!',
+ rather than for any end of line character.
+
* config/tc-hppa.c (tc_gen_reloc): If hppa_ren_reloc_type fails,
call abort (i.e., as_abort) rather than crashing.
diff --git a/gas/config/tc-hppa.h b/gas/config/tc-hppa.h
index 19cabb1..99d640b 100644
--- a/gas/config/tc-hppa.h
+++ b/gas/config/tc-hppa.h
@@ -1,6 +1,5 @@
-/* tc-hppa.h -- Header file for the PA */
-
-/* Copyright (C) 1989, 1993 Free Software Foundation, Inc.
+/* tc-hppa.h -- Header file for the PA
+ Copyright (C) 1989, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -15,8 +14,9 @@
GNU General Public License for more details.
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. */
+ along with GAS; see the file COPYING. If not, write to the Free
+ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA. */
/* HP PA-RISC support was contributed by the Center for Software Science
@@ -39,6 +39,8 @@
#define TC_HPPA 1
#endif
+#define TARGET_BYTES_BIG_ENDIAN 1
+
#define TARGET_ARCH bfd_arch_hppa
/* FIXME. The lack of a place to put things which are both target cpu
@@ -59,9 +61,6 @@
#define TRUE (!FALSE)
#endif
-/* Local labels have an "L$" prefix. */
-#define LOCAL_LABEL(name) ((name)[0] == 'L' && (name)[1] == '$')
-#define FAKE_LABEL_NAME "L$0\001"
#define ASEC_NULL (asection *)0
/* Labels are not required to have a colon for a suffix. */
@@ -113,7 +112,7 @@ void elf_hppa_final_processing PARAMS ((void));
/* 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. */
-#define TC_EOL_IN_INSN(PTR) (is_end_of_line[*(PTR)] && (PTR)[-1] == ',')
+#define TC_EOL_IN_INSN(PTR) (*(PTR) == '!' && (PTR)[-1] == ',')
#define tc_fix_adjustable hppa_fix_adjustable
@@ -131,6 +130,16 @@ void elf_hppa_final_processing PARAMS ((void));
|| (S_GET_SEGMENT (sym) == &bfd_abs_section \
&& (sym->bsym->flags & BSF_EXPORT) == 0)) \
punt = 1
+
+/* We need to be able to make relocations involving the difference of
+ two symbols. This includes the difference of two symbols when
+ one of them is undefined (this comes up in PIC code generation).
+
+ We don't define DIFF_EXPR_OK because it does the wrong thing if
+ the add symbol is undefined and the sub symbol is a symbol in
+ the same section as the relocation. We also need some way to
+ specialize some code in adjust_reloc_syms. */
+#define UNDEFINED_DIFFERENCE_OK
#endif
#ifdef OBJ_ELF
@@ -151,4 +160,7 @@ void elf_hppa_final_processing PARAMS ((void));
#define md_operand(x)
+#define TC_FIX_TYPE PTR
+#define TC_INIT_FIX_DATA(FIXP) ((FIXP)->tc_fix_data = NULL)
+
#endif /* _TC_HPPA_H */