Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/arch/vax/sys change "pushl [r0](ap)" ---> "pushl...
details: https://anonhg.NetBSD.org/src/rev/7afcf096c0d7
branches: trunk
changeset: 514599:7afcf096c0d7
user: chuck <chuck%NetBSD.org@localhost>
date: Thu Sep 06 18:42:58 2001 +0000
description:
change "pushl [r0](ap)" ---> "pushl (ap)[r0]" ... the old version
made a reference to an external symbol "r0" rather that used register r0.
diffstat:
lib/libc/arch/vax/sys/execle.S | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r c873f2d40958 -r 7afcf096c0d7 lib/libc/arch/vax/sys/execle.S
--- a/lib/libc/arch/vax/sys/execle.S Thu Sep 06 13:29:29 2001 +0000
+++ b/lib/libc/arch/vax/sys/execle.S Thu Sep 06 18:42:58 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: execle.S,v 1.1 2001/07/01 13:31:18 ragge Exp $ */
+/* $NetBSD: execle.S,v 1.2 2001/09/06 18:42:58 chuck Exp $ */
/*
* Copyright (c) 2001 Ludd, University of Lule}, Sweden. All rights reserved.
*
@@ -33,7 +33,7 @@
ENTRY(execle, 0)
movl (ap),r0 # Get number of args
- pushl [r0](ap) # Push last arg (envp)
+ pushl (ap)[r0] # Push last arg (envp)
pushal 8(ap) # Push pointer to argv vector
pushl 4(ap) # Push path
calls $3,_C_LABEL(execve)
Home |
Main Index |
Thread Index |
Old Index