+2004-02-06 Nathan Sidwell <nathan@codesourcery.com>
+
+ * dwarf2dbg.c (DWARF2_ADDR_SIZE): Remove trailing ';'
+ * read.h (SKIP_WHITESPACE): Turn into an expression.
+ * read.c (read_a_source_file): A pseudo is removed by having a
+ NULL handler.
+
2004-02-05 James E Wilson <wilson@specifixinc.com>
* config/tc-ia64.c (output_endp): New.
#endif
#ifndef DWARF2_ADDR_SIZE
-# define DWARF2_ADDR_SIZE(bfd) (bfd_arch_bits_per_address (bfd) / 8);
+# define DWARF2_ADDR_SIZE(bfd) (bfd_arch_bits_per_address (bfd) / 8)
#endif
#ifdef BFD_ASSEMBLER
if (pop == NULL)
pop = (pseudo_typeS *) hash_find (po_hash, s + 1);
+ if (pop && !pop->poc_handler)
+ pop = NULL;
/* In MRI mode, we may need to insert an
automatic alignment directive. What a hack
#ifdef PERMIT_WHITESPACE
#define SKIP_WHITESPACE() \
- { \
- if (* input_line_pointer == ' ') \
- ++ input_line_pointer; \
- }
+ ((*input_line_pointer == ' ') ? ++input_line_pointer : 0)
#else
#define SKIP_WHITESPACE() know(*input_line_pointer != ' ' )
#endif
+2004-02-06 Nathan Sidwell <nathan@codesourcery.com>
+
+ * gas/macros/test2.s: Lowercase it.
+
2004-02-02 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
* gas/mips/div.d: Update to accomodate changes in macro
.macro m arg1 arg2 arg3
.long \arg1
.ifc ,\arg2\arg3
- .ELSE
+ .else
m \arg2,\arg3
.endif
.endm