Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/csu/arch/m68k s/bsrl/jsr/ and let gas figure it out



details:   https://anonhg.NetBSD.org/src/rev/89c2444c122d
branches:  trunk
changeset: 788717:89c2444c122d
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Jul 18 18:43:04 2013 +0000

description:
s/bsrl/jsr/ and let gas figure it out

diffstat:

 lib/csu/arch/m68k/crtbegin.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 33f10d8e0241 -r 89c2444c122d lib/csu/arch/m68k/crtbegin.h
--- a/lib/csu/arch/m68k/crtbegin.h      Thu Jul 18 18:11:30 2013 +0000
+++ b/lib/csu/arch/m68k/crtbegin.h      Thu Jul 18 18:43:04 2013 +0000
@@ -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");



Home | Main Index | Thread Index | Old Index