public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* PATCH: COMMITTED: Fix typos in tc-cr16.c
@ 2010-11-05 11:01 Nick Clifton
  2011-04-11  4:53 ` Alan Modra
  0 siblings, 1 reply; 3+ messages in thread
From: Nick Clifton @ 2010-11-05 11:01 UTC (permalink / raw)
  To: binutils

Hi Guys

  I am applying the patch below (to mainline and the 2.21 branch) to fix
  a couple of typos in tc-cr16.c that were exposed by a recent switch to
  a gcc 4.5.1 compiler.

Cheers
  Nick

gas/ChangeLog
2010-11-05  Nick Clifton  <nickc@redhat.com>

	* config/tc-cr16.c (getprocreg_image): Fix typo MAX_PREG ->
	MAX_REG.
	(getprocregp_image): Likewise.

Index: gas/config/tc-cr16.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-cr16.c,v
retrieving revision 1.10
diff -u -3 -p -r1.10 tc-cr16.c
--- gas/config/tc-cr16.c	11 Dec 2009 13:42:10 -0000	1.10
+++ gas/config/tc-cr16.c	5 Nov 2010 10:52:40 -0000
@@ -1669,7 +1669,7 @@ getprocreg_image (reg r)
   char *reg_name;
 
   /* Check whether the register is in registers table.  */
-  if (r < MAX_PREG)
+  if (r < MAX_REG)
     rreg = &cr16_pregtab[r - MAX_REG];
   /* Register not found.  */
   else
@@ -1708,7 +1708,7 @@ getprocregp_image (reg r)
   int pregptab_disp = 0;
 
   /* Check whether the register is in registers table.  */
-  if (r < MAX_PREG)
+  if (r < MAX_REG)
     {
       r = r - MAX_REG;
       switch (r)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-11  9:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-05 11:01 PATCH: COMMITTED: Fix typos in tc-cr16.c Nick Clifton
2011-04-11  4:53 ` Alan Modra
2011-04-11  9:03   ` Nick Clifton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).