svn commit: r319597 - head/sys/mips/mips

Edward Tomasz Napierala trasz at FreeBSD.org
Mon Jun 5 10:59:49 UTC 2017


Author: trasz
Date: Mon Jun  5 10:59:47 2017
New Revision: 319597
URL: https://svnweb.freebsd.org/changeset/base/319597

Log:
  Remove extraneous parentheses.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/mips/mips/stack_machdep.c

Modified: head/sys/mips/mips/stack_machdep.c
==============================================================================
--- head/sys/mips/mips/stack_machdep.c	Mon Jun  5 06:23:48 2017	(r319596)
+++ head/sys/mips/mips/stack_machdep.c	Mon Jun  5 10:59:47 2017	(r319597)
@@ -94,8 +94,7 @@ stack_capture(struct stack *st, u_register_t pc, u_reg
 
 			switch (insn.IType.op) {
 			case OP_SPECIAL:
-				if((insn.RType.func == OP_JR))
-				{
+				if (insn.RType.func == OP_JR) {
 					if (ra >= (u_register_t)(intptr_t)btext)
 						break;
 					if (insn.RType.rs != RA)


More information about the svn-src-head mailing list