From: Taylor R Campbell Date: Fri, 10 Jul 2015 17:40:11 +0000 (+0000) Subject: Fix comment. Note it has been fixed in glibc as of 2014-04. X-Git-Tag: mit-scheme-pucked-9.2.12~376^2~78 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=8641debab4cab110f7dfe26751dd196d6cc57d7b;p=mit-scheme.git Fix comment. Note it has been fixed in glibc as of 2014-04. --- diff --git a/src/microcode/floenv.c b/src/microcode/floenv.c index 4bc007729..574053ef0 100644 --- a/src/microcode/floenv.c +++ b/src/microcode/floenv.c @@ -66,8 +66,8 @@ cache_float_environment (void) if (0 != (fegetenv (&scheme_fenv))) error_external_return (); scheme_fenv_p = true; - /* Work around glibc lossage: fesetenv has the side effect of masking - all exception traps on amd64. */ + /* Work around pre-2014-04 glibc lossage: fegetenv has the side + effect of masking all exception traps on amd64. */ # ifdef HAVE_FESETENV if (0 != (fesetenv (&scheme_fenv))) error_external_return ();