Revert previous patch (David to fix up later).

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28174 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2009-04-03 14:56:41 +00:00
parent 17e3bcd42e
commit 565c79f59d
2 changed files with 6 additions and 2 deletions

View file

@ -907,9 +907,9 @@ warn_proc(char *msg, GC_word arg)
{
volatile short cw;
__asm__ volatile ("fstcw %0" : : "g" (&cw));
__asm__ volatile ("fstcw (%0)" : : "g" (&cw));
cw |= 1; /* Mask 'invalid' exception */
__asm__ volatile ("fldcw %0" : : "g" (&cw));
__asm__ volatile ("fldcw (%0)" : : "g" (&cw));
}
#endif