2004-02-19  Carlos O'Donell  <carlos@baldric.uwo.ca>

	* sysdeps/hppa/fpu/feholdexcpt.c (feholdexcept): Fix order of fp
	status register loads.
This commit is contained in:
Ulrich Drepper 2004-02-21 02:10:52 +00:00
parent 230c3e1e54
commit 6fadaea6a2
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2004-02-19 Carlos O'Donell <carlos@baldric.uwo.ca>
* sysdeps/hppa/fpu/feholdexcpt.c (feholdexcept): Fix order of fp
status register loads.
2004-02-20 Thorsten Kukuk <kukuk@suse.de>
* nscd/nscd.c (termination_handler): Use _exit instead of exit

View File

@ -46,11 +46,11 @@ feholdexcept (fenv_t *envp)
/* Load the new environment. */
_regs = &clear;
__asm__ (
"fldd,ma -8(%1),%%fr3\n"
"fldd,ma -8(%1),%%fr2\n"
"fldd,ma -8(%1),%%fr1\n"
"fldd 0(%1),%%fr0\n"
: "=m" (*_regs), "+r" (_regs));
"fldd,ma 8(%0),%%fr0\n"
"fldd,ma 8(%0),%%fr1\n"
"fldd,ma 8(%0),%%fr2\n"
"fldd 0(%0),%%fr3\n"
: : "r" (_regs));
return 0;
}