Date: Mon, 5 Jun 2017 10:59:48 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r319597 - head/sys/mips/mips Message-ID: <201706051059.v55Axm0o051233@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706051059.v55Axm0o051233>