diff --git a/lisp/Config.x86_common b/lisp/Config.x86_common
index fe1649292b0ec6f4ed3bdad93d5df1b61914183e..0613fd85b358cd2431df25f863b51fbd20783c33 100644
--- a/lisp/Config.x86_common
+++ b/lisp/Config.x86_common
@@ -49,9 +49,7 @@ NM = nm -gp
 DEPEND = $(CC) -MM -E
 DEPEND_FLAGS = 
 
-# This has aliasing problems, so turn off aliasing and also turn on
-# float-store so x87 arithmetic behaves like double-precision
-# arithmetic.  And with SSE2 support, we don't want the C code to be
-# compiled differently.  Hence, we need -ffloat-store with SSE2.
+# This no longer has aliasing problems, so no need to use
+# -ffloat-store and -fno-strict-aliasing anymore.
 e_rem_pio2.o : e_rem_pio2.c
-	$(CC) -c -fno-strict-aliasing -ffloat-store $(CFLAGS) $(CPPFLAGS) $<
+	$(CC) -c $(CFLAGS) $(CPPFLAGS) $<