Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/m68k/fpe Don't use the frames' provided EA yet; som...



details:   https://anonhg.NetBSD.org/src/rev/05e3c9805d76
branches:  trunk
changeset: 504403:05e3c9805d76
user:      is <is%NetBSD.org@localhost>
date:      Thu Mar 01 22:01:52 2001 +0000

description:
Don't use the frames' provided EA yet; something is wrong.

diffstat:

 sys/arch/m68k/fpe/fpu_calcea.c |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r 201d0b152d21 -r 05e3c9805d76 sys/arch/m68k/fpe/fpu_calcea.c
--- a/sys/arch/m68k/fpe/fpu_calcea.c    Thu Mar 01 21:32:53 2001 +0000
+++ b/sys/arch/m68k/fpe/fpu_calcea.c    Thu Mar 01 22:01:52 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fpu_calcea.c,v 1.10 2001/01/05 19:54:30 is Exp $       */
+/*     $NetBSD: fpu_calcea.c,v 1.11 2001/03/01 22:01:52 is Exp $       */
 
 /*
  * Copyright (c) 1995 Gordon W. Ross
@@ -343,6 +343,7 @@
     }
     step = (len == 1 && ea->ea_regnum == 15 /* sp */) ? 2 : len;
 
+#if 0
     if (ea->ea_flags & EA_FRAME_EA) {
        /* Using LC040 frame EA */
 #ifdef DEBUG_FPE
@@ -392,7 +393,9 @@
        printf("load_ea: src %p\n", src);
 #endif
        bcopy(src, dst, len);
-    } else if (ea->ea_flags & EA_IMMED) {
+    } else
+#endif
+    if (ea->ea_flags & EA_IMMED) {
 #ifdef DEBUG_FPE
        printf("load_ea: immed %08x%08x%08x size %d\n",
               ea->ea_immed[0], ea->ea_immed[1], ea->ea_immed[2], len);



Home | Main Index | Thread Index | Old Index