svn commit: r327442 - head/sys/powerpc/powerpc
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Sun Dec 31 20:10:09 UTC 2017
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
More information about the svn-src-all
mailing list