Source-Changes-HG archive

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

[src/trunk]: src/lib/csu/arch/vax Fix another bneq -> beql botch



details:   https://anonhg.NetBSD.org/src/rev/767514c0ca05
branches:  trunk
changeset: 787877:767514c0ca05
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Jul 10 22:55:40 2013 +0000

description:
Fix another bneq -> beql botch

diffstat:

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

diffs (27 lines):

diff -r 116f64d87aaa -r 767514c0ca05 lib/csu/arch/vax/crtbegin.S
--- a/lib/csu/arch/vax/crtbegin.S       Wed Jul 10 20:25:21 2013 +0000
+++ b/lib/csu/arch/vax/crtbegin.S       Wed Jul 10 22:55:40 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: crtbegin.S,v 1.4 2013/07/10 14:27:01 matt Exp $        */
+/*     $NetBSD: crtbegin.S,v 1.5 2013/07/10 22:55:40 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.4 2013/07/10 14:27:01 matt Exp $")
+RCSID("$NetBSD: crtbegin.S,v 1.5 2013/07/10 22:55:40 matt Exp $")
 
        .section        .ctors, "aw", @progbits
        .p2align 2
@@ -114,7 +114,7 @@
         *     __deregister_frame_info(&__EH_FRAME_LIST__[0]);
         */
        moval   __deregister_frame_info, %r0
-       bneq    4f
+       beql    4f
        pushal  __EH_FRAME_LIST__
        calls   $0, (%r0)
 #endif /* SHARED */



Home | Main Index | Thread Index | Old Index