Disable raising exception, not enabling it.

This commit is contained in:
Ulrich Drepper 2000-02-15 01:57:11 +00:00
parent 2136ab5106
commit 8b4be9076a
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ ENTRY(__nearbyint)
pushl %ecx
fnstcw (%esp)
movl (%esp), %eax
andl $~0x20, %eax
orl $0x20, %eax
movl %eax, 4(%esp)
fldcw 4(%esp)
frndint

View File

@ -12,7 +12,7 @@ ENTRY(__nearbyintf)
pushl %ecx
fnstcw (%esp)
movl (%esp), %eax
andl $~0x20, %eax
orl $0x20, %eax
movl %eax, 4(%esp)
fldcw 4(%esp)
frndint

View File

@ -12,7 +12,7 @@ ENTRY(__nearbyintl)
pushl %ecx
fnstcw (%esp)
movl (%esp), %eax
andl $~0x20, %eax
orl $0x20, %eax
movl %eax, 4(%esp)
fldcw 4(%esp)
frndint