svn commit: r328767 - head/sys/powerpc/aim

Steve Wills swills at FreeBSD.org
Fri Feb 2 02:28:26 UTC 2018


Author: swills (ports committer)
Date: Fri Feb  2 02:28:25 2018
New Revision: 328767
URL: https://svnweb.freebsd.org/changeset/base/328767

Log:
  Correct longjmp
  
  Reviewed by:	nwhitehorn
  Differential Revision:	https://reviews.freebsd.org/D14159

Modified:
  head/sys/powerpc/aim/trap_subr64.S

Modified: head/sys/powerpc/aim/trap_subr64.S
==============================================================================
--- head/sys/powerpc/aim/trap_subr64.S	Fri Feb  2 02:05:14 2018	(r328766)
+++ head/sys/powerpc/aim/trap_subr64.S	Fri Feb  2 02:28:25 2018	(r328767)
@@ -347,7 +347,7 @@ cpu_reset_handler:
 	beq	%cr0,2f
 	nop
 	li	%r4,1
-	b	CNAME(longjmp)
+	bl	CNAME(longjmp)
 	nop
 2:
 #ifdef SMP


More information about the svn-src-all mailing list