Module Name:    src
Committed By:   matt
Date:           Wed Jul 10 23:30:45 UTC 2013

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

Log Message:
Add END(func) so gdb doesn't get so confused.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/csu/arch/vax/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/vax/crtbegin.S
diff -u src/lib/csu/arch/vax/crtbegin.S:1.5 src/lib/csu/arch/vax/crtbegin.S:1.6
--- src/lib/csu/arch/vax/crtbegin.S:1.5	Wed Jul 10 22:55:40 2013
+++ src/lib/csu/arch/vax/crtbegin.S	Wed Jul 10 23:30:45 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: crtbegin.S,v 1.5 2013/07/10 22:55:40 matt Exp $	*/
+/*	$NetBSD: crtbegin.S,v 1.6 2013/07/10 23:30:45 matt Exp $	*/
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -30,7 +30,7 @@
 
 #include <vax/asm.h>
 
-RCSID("$NetBSD: crtbegin.S,v 1.5 2013/07/10 22:55:40 matt Exp $")
+RCSID("$NetBSD: crtbegin.S,v 1.6 2013/07/10 23:30:45 matt Exp $")
 
 	.section	.ctors, "aw", @progbits
 	.p2align 2
@@ -120,6 +120,7 @@ _ENTRY(__do_global_dtors_aux, 0x0100)		/
 #endif /* SHARED */
 
 4:	ret
+END(__do_global_dtors_aux)
 
 	.weak	__deregister_frame_info
 	.weak	__cxa_finalize
@@ -167,6 +168,7 @@ _ENTRY(__do_global_ctors_aux, 0x0800)
 	brb	3b			/* get next one */
 
 4:	ret
+END(__do_global_ctors_aux)
 
 	.hidden	_C_LABEL(__CTOR_LIST_END__)
 

Reply via email to