Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/sys/arch/vax/include Pull up following revision(s) (reque...
details: https://anonhg.NetBSD.org/src/rev/a71ef72cdb86
branches: netbsd-6
changeset: 774173:a71ef72cdb86
user: riz <riz%NetBSD.org@localhost>
date: Mon Jun 11 17:50:10 2012 +0000
description:
Pull up following revision(s) (requested by martin in ticket #293):
sys/arch/vax/include/asm.h: revision 1.25
Remove an unneeded indirect access from polyd/polyf macros
diffstat:
sys/arch/vax/include/asm.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 00c37453defc -r a71ef72cdb86 sys/arch/vax/include/asm.h
--- a/sys/arch/vax/include/asm.h Mon Jun 11 17:48:37 2012 +0000
+++ b/sys/arch/vax/include/asm.h Mon Jun 11 17:50:10 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: asm.h,v 1.24 2011/07/28 22:54:02 matt Exp $ */
+/* $NetBSD: asm.h,v 1.24.8.1 2012/06/11 17:50:10 riz Exp $ */
/*
* Copyright (c) 1982, 1993
* The Regents of the University of California. All rights reserved.
@@ -115,7 +115,7 @@
1:
mulf2 %r1, %r0 /* result *= arg */
2:
- addf2 *(%r3)+, %r0 /* result += c[n] */
+ addf2 (%r3)+, %r0 /* result += c[n] */
sobgtr %r2, 1b
clrf %r1 /* r1 is 0 on finish */
.endm
@@ -130,7 +130,7 @@
1:
muld2 %r4, %r0 /* result *= arg */
2:
- addd2 *(%r3)+, %r0 /* result += c[n] */
+ addd2 (%r3)+, %r0 /* result += c[n] */
sobgtr %r2, 1b
clrq %r4 /* r4, r5 are 0 on finish */
.endm
Home |
Main Index |
Thread Index |
Old Index