This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL.


Hello,

 Applied as obvious.

2007-10-08  Maciej W. Rozycki  <macro@mips.com>

	* mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL.

  Maciej

Index: gdb/mips-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/mips-tdep.c,v
retrieving revision 1.450
diff -u -p -r1.450 mips-tdep.c
--- gdb/mips-tdep.c	2 Oct 2007 15:17:44 -0000	1.450
+++ gdb/mips-tdep.c	8 Oct 2007 13:11:36 -0000
@@ -1011,7 +1011,7 @@ mips32_next_pc (struct frame_info *frame
 	      goto neq_branch;
 	    case 2:		/* BLEZL */
 	      goto less_branch;
-	    case 3:		/* BGTZ */
+	    case 3:		/* BGTZL */
 	      goto greater_branch;
 	    default:
 	      pc += 4;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]