Commit e868d863 by Matthias Klose Committed by Toon Moene

g77.texi (Floating-point Exception Handling): Adjust example to work with glibc (>= 2.1).

Sat Nov 18 13:54:49 2000  Matthias Klose  <doko@cs.tu-berlin.de>

	* g77.texi (Floating-point Exception Handling): Adjust
	example to work with glibc (>= 2.1).

From-SVN: r37566
parent ce1cc601
Sat Nov 18 13:54:49 2000 Matthias Klose <doko@cs.tu-berlin.de>
* g77.texi (Floating-point Exception Handling): Adjust
example to work with glibc (>= 2.1).
2000-11-18 Alexandre Oliva <aoliva@redhat.com>
* Make-lang.in (INTDOC_DEPS): New macro.
......
......@@ -12154,8 +12154,10 @@ on an x86-based GNU system:
static void __attribute__ ((constructor))
trapfpe ()
@{
__setfpucw (_FPU_DEFAULT &
~(_FPU_MASK_IM | _FPU_MASK_ZM | _FPU_MASK_OM));
fpu_control_t cw =
_FPU_DEFAULT &
~(_FPU_MASK_IM | _FPU_MASK_ZM | _FPU_MASK_OM);
_FPU_SETCW(cw);
@}
@end smallexample
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment