Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivmai <ivmai>2011-02-19 13:45:00 +0300
committerIvan Maidanski <ivmai@mail.ru>2011-07-26 21:06:56 +0400
commiteb7c49d700ec28f32c8df663907966d10838ce4f (patch)
tree94130eee6e80f66d937d05d2f409448e12eb7e82 /mach_dep.c
parenta221c4369b3bc859af597794459a92e3cc73862b (diff)
2011-02-19 Ivan Maidanski <ivmai@mail.ru>
* aclocal.m4: Regenerate (by autoreconf -vif using autoconf-2.68, automake-1.11.1 and libtool-2.4). * configure: Ditto. * ltmain.sh: Ditto. * makefile.in: Ditto. * m4/libtool.m4: Ditto. * m4/ltversion.m4: Ditto. * mach_dep.c (GC_with_callee_saves_pushed): Fix FE_ALL_EXCEPT macro.
Diffstat (limited to 'mach_dep.c')
-rw-r--r--mach_dep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mach_dep.c b/mach_dep.c
index 15f8e4d9..54697759 100644
--- a/mach_dep.c
+++ b/mach_dep.c
@@ -228,8 +228,8 @@ GC_INNER void GC_with_callee_saves_pushed(void (*fn)(ptr_t, void *),
unsigned mxcsr;
/* And now correct the exception mask in SSE MXCSR. */
__asm__ __volatile__ ("stmxcsr %0" : "=m" (*&mxcsr));
- mxcsr = (mxcsr & ~(ALL_EXCEPT << 7)) |
- ((old_fcw & ALL_EXCEPT) << 7);
+ mxcsr = (mxcsr & ~(FE_ALL_EXCEPT << 7)) |
+ ((old_fcw & FE_ALL_EXCEPT) << 7);
__asm__ __volatile__ ("ldmxcsr %0" : : "m" (*&mxcsr));
}
# else /* !X86_64 */