This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
PATCH: Fix typo in tc-ia64.c
- From: Nick Clifton <nickc at redhat dot com>
- To: binutils at sourceware dot org
- Date: Sat, 21 Apr 2007 13:25:41 +0100
- Subject: PATCH: Fix typo in tc-ia64.c
Hi Guys,
I am checking in the patch below to fix a typo in tc-ia64.c.
Cheers
Nick
gas/ChangeLog
2007-04-21 Nick Clifton <nickc@redhat.com>
* config/tc-ia64.c (emit_one_bundle): Fix typo.
Index: gas/config/tc-ia64.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-ia64.c,v
retrieving revision 1.190
diff -c -3 -p -r1.190 tc-ia64.c
*** gas/config/tc-ia64.c 1 Feb 2007 14:12:18 -0000 1.190
--- gas/config/tc-ia64.c 21 Apr 2007 12:23:35 -0000
*************** emit_one_bundle ()
*** 6691,6697 ****
int addr_mod;
first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % 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
--- 6691,6697 ----
int addr_mod;
first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % 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