This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
There is an extra space in the asm spec that gcc 3.0 does not like at all.
Andreas.
2001-03-07 Andreas Schwab <schwab@suse.de>
* sysdeps/ia64/fpu/feenablxcpt.c (feenableexcept): Remove extra
space in asm spec.
--- sysdeps/ia64/fpu/feenablxcpt.c.~1.2.~ Fri Sep 29 10:03:22 2000
+++ sysdeps/ia64/fpu/feenablxcpt.c Wed Mar 7 19:44:33 2001
@@ -27,7 +27,7 @@
fenv_t new_fpsr;
/* Get the current fpsr. */
- __asm__ __volatile__ ("mov.m %0=ar.fpsr" : "=r " (old_fpsr));
+ __asm__ __volatile__ ("mov.m %0=ar.fpsr" : "=r" (old_fpsr));
new_fpsr = old_fpsr & ~((fenv_t) excepts & FE_ALL_EXCEPT);
--
Andreas Schwab "And now for something
SuSE Labs completely different."
Andreas.Schwab@suse.de
SuSE GmbH, Schanzäckerstr. 10, D-90443 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |