Module Name:    src
Committed By:   matt
Date:           Mon Jun 24 20:56:18 UTC 2013

Modified Files:
        src/lib/csu/arch/earm: crtbegin.S

Log Message:
Use (target1) for .init/fini array entries


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/csu/arch/earm/crtbegin.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/earm/crtbegin.S
diff -u src/lib/csu/arch/earm/crtbegin.S:1.3 src/lib/csu/arch/earm/crtbegin.S:1.4
--- src/lib/csu/arch/earm/crtbegin.S:1.3	Mon Jun 24 14:53:42 2013
+++ src/lib/csu/arch/earm/crtbegin.S	Mon Jun 24 20:56:18 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: crtbegin.S,v 1.3 2013/06/24 14:53:42 matt Exp $	*/
+/*	$NetBSD: crtbegin.S,v 1.4 2013/06/24 20:56:18 matt Exp $	*/
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -30,7 +30,7 @@
 
 #include <arm/asm.h>
 
-RCSID("$NetBSD: crtbegin.S,v 1.3 2013/06/24 14:53:42 matt Exp $")
+RCSID("$NetBSD: crtbegin.S,v 1.4 2013/06/24 20:56:18 matt Exp $")
 
 	.section	.eh_frame, "a", %progbits
 	.p2align 2
@@ -117,7 +117,7 @@ __do_global_dtors_aux:
 
 	.pushsection .fini_array,"aw",%fini_array
 	.p2align 2
-	.word	__do_global_dtors_aux
+	.word	__do_global_dtors_aux(target1)
 	.popsection
 #endif /* SHARED */
 
@@ -213,4 +213,4 @@ __do_global_ctors_aux:
 
 	.section .init_array,"aw",%init_array
 	.p2align 2
-	.word	__do_global_ctors_aux
+	.word	__do_global_ctors_aux(target1)

Reply via email to