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 logic inversion.



details:   https://anonhg.NetBSD.org/src/rev/48b071568155
branches:  trunk
changeset: 787867:48b071568155
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Jul 10 14:27:01 2013 +0000

description:
Fix logic inversion.

diffstat:

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

diffs (27 lines):

diff -r dffbb9b07617 -r 48b071568155 lib/csu/arch/vax/crtbegin.S
--- a/lib/csu/arch/vax/crtbegin.S       Wed Jul 10 09:41:16 2013 +0000
+++ b/lib/csu/arch/vax/crtbegin.S       Wed Jul 10 14:27:01 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: crtbegin.S,v 1.3 2013/06/25 00:30:07 matt Exp $        */
+/*     $NetBSD: crtbegin.S,v 1.4 2013/07/10 14:27:01 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.3 2013/06/25 00:30:07 matt Exp $")
+RCSID("$NetBSD: crtbegin.S,v 1.4 2013/07/10 14:27:01 matt Exp $")
 
        .section        .ctors, "aw", @progbits
        .p2align 2
@@ -91,7 +91,7 @@
         *      __cxa_finalize(&__dso_handle);
         */
        movab   __cxa_finalize, %r0
-       bneq    1f
+       beql    1f
        pushal  __dso_handle    
        calls   $0, (%r0)
 1:



Home | Main Index | Thread Index | Old Index