diff options
author | Nick Clifton <nickc@redhat.com> | 2007-04-21 12:25:13 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-04-21 12:25:13 +0000 |
commit | c13781b849c7762655fc29e989c039ac4948e271 (patch) | |
tree | 7f220e347ad70461c881951fa271d7dadff438cb /gas | |
parent | 1b0b5b1b6ae0149ec1162b95629ebd4bea6de59b (diff) | |
download | binutils-gdb-c13781b849c7762655fc29e989c039ac4948e271.tar.gz |
Fix typo.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-ia64.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index f573cfb931c..0fff41bc155 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2007-04-21 Nick Clifton <nickc@redhat.com> + + * config/tc-ia64.c (emit_one_bundle): Fix typo. + 2007-04-21 Alan Modra <amodra@bigpond.net.au> * expr.c (expr): Assert on rankarg, not rank which can be unsigned. diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index 3a7ac94f620..5ed9ba82ad2 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -6691,7 +6691,7 @@ emit_one_bundle () int addr_mod; first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % NUM_SLOTS; - know (first >= 0 & first < NUM_SLOTS); + know (first >= 0 && first < NUM_SLOTS); n = MIN (3, md.num_slots_in_use); /* Determine template: user user_template if specified, best match |