diff options
author | Alan Modra <amodra@gmail.com> | 2002-08-27 11:09:43 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-08-27 11:09:43 +0000 |
commit | 7065849339c3e156a2a3176f91664e3fa87d549e (patch) | |
tree | 55c6dbb4bd91dbafb34317194ad0abbbe9d961b6 /gas/expr.c | |
parent | 88f7bcd5a785b91a33632bea6682c3d31f2df034 (diff) | |
download | gdb-7065849339c3e156a2a3176f91664e3fa87d549e.zip gdb-7065849339c3e156a2a3176f91664e3fa87d549e.tar.gz gdb-7065849339c3e156a2a3176f91664e3fa87d549e.tar.bz2 |
* dwarf2dbg.c: Always include dwarf2dbg.h.
(dwarf2_directive_file): Adjust dummy version args.
* ecoff.c (ecoff_directive_weakext): Add ATTRIBUTE_UNUSED.
* expr.c (clean_up_expression <O_subtract>): Allow subtraction
when symbol values differ.
* read.c (do_align): Add ATTRIBUTE_UNUSED to label.
(pseudo_set <O_subtract>): Remove unnecessary segment test.
* config/obj-bout.c (obj_pseudo_table): Warning fix.
Diffstat (limited to 'gas/expr.c')
-rw-r--r-- | gas/expr.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,6 +1,6 @@ /* expr.c -operands, expressions- Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -1375,9 +1375,7 @@ clean_up_expression (expressionP) if (expressionP->X_op_symbol == expressionP->X_add_symbol || ((symbol_get_frag (expressionP->X_op_symbol) == symbol_get_frag (expressionP->X_add_symbol)) - && SEG_NORMAL (S_GET_SEGMENT (expressionP->X_add_symbol)) - && (S_GET_VALUE (expressionP->X_op_symbol) - == S_GET_VALUE (expressionP->X_add_symbol)))) + && SEG_NORMAL (S_GET_SEGMENT (expressionP->X_add_symbol)))) { addressT diff = (S_GET_VALUE (expressionP->X_add_symbol) - S_GET_VALUE (expressionP->X_op_symbol)); |