From 41929b75bde8b0f68307ec5795fbed84f1921d5d Mon Sep 17 00:00:00 2001 From: Kevin Lawton Date: Sun, 22 Sep 2002 23:42:01 +0000 Subject: [PATCH] Moved the "i = &iStorage" line inside the #ifdef bracketing for iCache support. It wouldn't hurt anything, but it makes the compiler complain of longjmp/fork issues. --- bochs/cpu/cpu.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/cpu/cpu.cc b/bochs/cpu/cpu.cc index ed0f543bb..cb14826a7 100644 --- a/bochs/cpu/cpu.cc +++ b/bochs/cpu/cpu.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: cpu.cc,v 1.50 2002-09-22 18:22:24 kevinlawton Exp $ +// $Id: cpu.cc,v 1.51 2002-09-22 23:42:01 kevinlawton Exp $ ///////////////////////////////////////////////////////////////////////// // // Copyright (C) 2001 MandrakeSoft S.A. @@ -275,8 +275,8 @@ async_events_processed: // to the i-> structure. BX_CPU_THIS_PTR iCache.entry[iCacheHash].writeStamp = ICacheWriteStampInvalid; -#endif i = &iStorage; +#endif boundaryFetch(i); resolveModRM = i->ResolveModrm; // Get function pointers as early }