Module Name:    src
Committed By:   matt
Date:           Thu Feb 27 18:11:08 UTC 2014

Modified Files:
        src/lib/csu/arch/powerpc: crti.S

Log Message:
Use _ENTRY


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/csu/arch/powerpc/crti.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/csu/arch/powerpc/crti.S
diff -u src/lib/csu/arch/powerpc/crti.S:1.2 src/lib/csu/arch/powerpc/crti.S:1.3
--- src/lib/csu/arch/powerpc/crti.S:1.2	Thu Feb 27 16:47:48 2014
+++ src/lib/csu/arch/powerpc/crti.S	Thu Feb 27 18:11:08 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: crti.S,v 1.2 2014/02/27 16:47:48 matt Exp $ */
+/* $NetBSD: crti.S,v 1.3 2014/02/27 18:11:08 matt Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -31,53 +31,27 @@
 
 #include <powerpc/asm.h>
 
-RCSID("$NetBSD: crti.S,v 1.2 2014/02/27 16:47:48 matt Exp $")
+RCSID("$NetBSD: crti.S,v 1.3 2014/02/27 18:11:08 matt Exp $")
 
 #include "sysident.S"
 
-	.globl	_init
-	.type	_init,@function
 	.section ".init", "ax", @progbits
-	.align	P2SZREG
-#ifdef _LP64
-	.globl	._init
-	.pushsection ".opd", "aw"
-	.align	3
-_init:	.quad	._init,.TOC.@tocbase,0
-	.size	_init, (3*SZREG)
-	.popsection
-._init:
-#else
-_init:
-#endif
+_ENTRY(_init)
 	mflr	%r0
 #ifdef _LP64
-	stlongu	%r1, -(6*SZREG)(%r1)
-	stlong	%r0, (2*SZREG)(%r1)
+	stdu	%r1, -(6*SZREG)(%r1)
+	std	%r0, (2*SZREG)(%r1)
 #else
 	stw	%r0, (1*SZREG)(%r1)
 	stwu	%r1, -(4*SZREG)(%r1)
 #endif
 
-	.globl _fini
-	.type	_fini,@function
 	.section ".fini", "ax", @progbits
-	.align	P2SZREG
-#ifdef _LP64
-	.globl	._fini
-	.pushsection ".opd", "aw"
-	.align	3
-_fini:	.quad	._fini,.TOC.@tocbase,0
-	.size	_fini, (3*SZREG)
-	.popsection
-._fini:
-#else
-_fini:
-#endif
+_ENTRY(_fini)
 	mflr	%r0
 #ifdef _LP64
-	stlongu	%r1, -(6*SZREG)(%r1)
-	stlong	%r0, (2*SZREG)(%r1)
+	stdu	%r1, -(6*SZREG)(%r1)
+	std	%r0, (2*SZREG)(%r1)
 #else
 	stw	%r0, (1*SZREG)(%r1)
 	stwu	%r1, -(4*SZREG)(%r1)

Reply via email to