diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-xtensa.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1c2b6c9..973a887 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2004-04-19 Jakub Jelinek <jakub@redhat.com> + + * config/tc-xtensa.c (xg_assembler_literal): Fix a typo. + 2004-04-19 Nathan Sidwell <nathan@codesourcery.com> * read.c (do_align): Call md_flush_pending_output, if defined. diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index 6f9198a..5d5ccea 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -3721,7 +3721,7 @@ xg_assemble_literal (insn) set_expr_symbol_offset (&saved_loc, frag_now->fr_symbol, frag_now_fix ()); assert (insn->insn_type == ITYPE_LITERAL); - assert (insn->ntok = 1); /* must be only one token here */ + assert (insn->ntok == 1); /* must be only one token here */ xtensa_switch_to_literal_fragment (&state); |