Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Dec 2017 20:10:08 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327442 - head/sys/powerpc/powerpc
Message-ID:  <201712312010.vBVKA8Cd017427@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Sun Dec 31 20:10:08 2017
New Revision: 327442
URL: https://svnweb.freebsd.org/changeset/base/327442

Log:
  Make newer binutils happy by using a bl-type branch instead of b, which
  displeases it for some reason. LR is not relevant in this code, so just
  do what it wants.

Modified:
  head/sys/powerpc/powerpc/swtch64.S

Modified: head/sys/powerpc/powerpc/swtch64.S
==============================================================================
--- head/sys/powerpc/powerpc/swtch64.S	Sun Dec 31 20:08:16 2017	(r327441)
+++ head/sys/powerpc/powerpc/swtch64.S	Sun Dec 31 20:10:08 2017	(r327442)
@@ -280,5 +280,5 @@ ENTRY_NOPROF(fork_trampoline)
 					   trapframe to simulate FRAME_SETUP
 					   does when allocating space for
 					   a frame pointer/saved LR */
-	b	trapexit
+	bl	trapexit
 	nop



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712312010.vBVKA8Cd017427>