Changeset 4961


Ignore:
Timestamp:
Aug 18, 2006, 8:50:03 AM (18 years ago)
Author:
Gary Byers
Message:

Enable FP underflow detection on x8664. Should do this on PPC as well, and should
probably offer some backward-compatible behavior for reader.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lisp-kernel/thread_manager.c

    r4849 r4961  
    545545#endif
    546546#ifdef X86
    547   tcr->lisp_mxcsr = (1 << MXCSR_DM_BIT) | (1 << MXCSR_UM_BIT) | (1 << MXCSR_PM_BIT);
     547  tcr->lisp_mxcsr = (1 << MXCSR_DM_BIT) |
     548#if 0
     549    (1 << MXCSR_UM_BIT) |
     550#endif
     551    (1 << MXCSR_PM_BIT);
    548552#endif
    549553  tcr->save_allocbase = tcr->save_allocptr = (void *) VOID_ALLOCPTR;
Note: See TracChangeset for help on using the changeset viewer.