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.
This commit is contained in:
Kevin Lawton 2002-09-22 23:42:01 +00:00
parent e4b5e64048
commit 41929b75bd

View File

@ -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
}