svn commit: r355036 - head/lib/libc/powerpc/gen

Brandon Bergren bdragon at FreeBSD.org
Sat Nov 23 23:41:22 UTC 2019


Author: bdragon
Date: Sat Nov 23 23:41:21 2019
New Revision: 355036
URL: https://svnweb.freebsd.org/changeset/base/355036

Log:
  [PowerPC] Fix typo in _ctx_start on ppc32
  
  Theoretically, this was breaking the size calculation for the symbol.
  
  Noticed when doing a readthrough.
  
  Reviewed by:	imp
  Differential Revision:	https://reviews.freebsd.org/D22525

Modified:
  head/lib/libc/powerpc/gen/_ctx_start.S

Modified: head/lib/libc/powerpc/gen/_ctx_start.S
==============================================================================
--- head/lib/libc/powerpc/gen/_ctx_start.S	Sat Nov 23 21:18:55 2019	(r355035)
+++ head/lib/libc/powerpc/gen/_ctx_start.S	Sat Nov 23 23:41:21 2019	(r355036)
@@ -48,6 +48,6 @@
 	addis	%r30,%r30,_GLOBAL_OFFSET_TABLE_-1b at ha
 	addi	%r30,%r30,_GLOBAL_OFFSET_TABLE_-1b at l
 	bl	PIC_PLT(CNAME(abort))	/* abort */
- END(_cts_start)
+ END(_ctx_start)
 
 	.section .note.GNU-stack,"",%progbits


More information about the svn-src-head mailing list