Module Name:    src
Committed By:   matt
Date:           Thu Jul 18 18:43:04 UTC 2013

Modified Files:
        src/lib/csu/arch/m68k: crtbegin.h

Log Message:
s/bsrl/jsr/ and let gas figure it out


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/csu/arch/m68k/crtbegin.h

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/m68k/crtbegin.h
diff -u src/lib/csu/arch/m68k/crtbegin.h:1.1 src/lib/csu/arch/m68k/crtbegin.h:1.2
--- src/lib/csu/arch/m68k/crtbegin.h:1.1	Thu Jul 11 17:07:35 2013
+++ src/lib/csu/arch/m68k/crtbegin.h	Thu Jul 18 18:43:04 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: crtbegin.h,v 1.1 2013/07/11 17:07:35 matt Exp $ */
+/* $NetBSD: crtbegin.h,v 1.2 2013/07/18 18:43:04 matt Exp $ */
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -29,9 +29,9 @@
  */
 
 __asm(	".pushsection .init"
-"\n\t"	"bsrl	__do_global_ctors_aux"
+"\n\t"	"jsr	__do_global_ctors_aux"
 "\n\t"	".popsection");
 
 __asm(	".pushsection .fini"
-"\n\t"	"bsrl	__do_global_dtors_aux"
+"\n\t"	"jsr	__do_global_dtors_aux"
 "\n\t"	".popsection");

Reply via email to