Source-Changes-HG archive

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

[src/trunk]: src/lib/csu/arch/ia64 add stop (; ; ) to elimate WAW dependency co...



details:   https://anonhg.NetBSD.org/src/rev/9d22873c0889
branches:  trunk
changeset: 451046:9d22873c0889
user:      scole <scole%NetBSD.org@localhost>
date:      Sat May 04 22:55:32 2019 +0000

description:
add stop (;;) to elimate WAW dependency compiler warning

diffstat:

 lib/csu/arch/ia64/crt0.S |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (25 lines):

diff -r 3c297bebc978 -r 9d22873c0889 lib/csu/arch/ia64/crt0.S
--- a/lib/csu/arch/ia64/crt0.S  Sat May 04 17:19:10 2019 +0000
+++ b/lib/csu/arch/ia64/crt0.S  Sat May 04 22:55:32 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.S,v 1.2 2018/11/26 17:37:45 joerg Exp $ */
+/* $NetBSD: crt0.S,v 1.3 2019/05/04 22:55:32 scole Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <machine/asm.h>
 
-RCSID("$NetBSD: crt0.S,v 1.2 2018/11/26 17:37:45 joerg Exp $")
+RCSID("$NetBSD: crt0.S,v 1.3 2019/05/04 22:55:32 scole Exp $")
 
 STRONG_ALIAS(_start,__start)
        
@@ -53,5 +53,6 @@
        mov sp = in3 /* Setup Memory Stack Pointer. */
        mov in1 = in2 /* obj is no longer used. */
        alloc r31 = ar.pfs, 3, 0, 0, 0 /* Adjust backingstore for ___start() */
+       ;;
        br.call.sptk.many rp = ___start
 



Home | Main Index | Thread Index | Old Index