Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/sommerfeld_i386mp_1]: src/sys/arch/i386/i386 Add *'s for indirect calls
details: https://anonhg.NetBSD.org/src/rev/bcfd99aa48f7
branches: sommerfeld_i386mp_1
changeset: 482436:bcfd99aa48f7
user: sommerfeld <sommerfeld%NetBSD.org@localhost>
date: Sun Sep 23 01:44:19 2001 +0000
description:
Add *'s for indirect calls
diffstat:
sys/arch/i386/i386/apicvec.s | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 47f013398277 -r bcfd99aa48f7 sys/arch/i386/i386/apicvec.s
--- a/sys/arch/i386/i386/apicvec.s Sat Sep 22 23:08:38 2001 +0000
+++ b/sys/arch/i386/i386/apicvec.s Sun Sep 23 01:44:19 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: apicvec.s,v 1.1.2.6 2001/04/30 20:36:37 sommerfeld Exp $ */
+/* $NetBSD: apicvec.s,v 1.1.2.7 2001/09/23 01:44:19 sommerfeld Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -129,7 +129,7 @@
movl %esp,%eax /* 0 means frame pointer */ ;\
6: \
pushl %eax ;\
- call IH_FUN(%ebx) /* call it */ ;\
+ call *IH_FUN(%ebx) /* call it */ ;\
addl $4,%esp /* toss the arg */ ;\
incl IH_COUNT(%ebx) /* count the intrs */ ;\
movl IH_NEXT(%ebx),%ebx /* next handler in chain */ ;\
@@ -162,7 +162,7 @@
movl %esp,%eax /* 0 means frame pointer */ ;\
6: \
pushl %eax ;\
- call IH_FUN(%ebx) /* call it */ ;\
+ call *IH_FUN(%ebx) /* call it */ ;\
addl $4,%esp /* toss the arg */ ;\
incl IH_COUNT(%ebx) /* count the intrs */ ;\
movl IH_NEXT(%ebx),%ebx /* next handler in chain */ ;\
Home |
Main Index |
Thread Index |
Old Index