patches/mpc/0.8.1/100-fix-build-with-mpfr-3_0_9.diff
author Zhenqiang Chen <zhenqiang.chen@linaro.org>
Fri Nov 18 11:32:50 2011 +0800 (2011-11-18)
branch1.13
changeset 2841 64fe22ca6e6f
permissions -rw-r--r--
cc/gcc: Apply CT_CC_GCC_DISABLE_PCH to do_cc_core.

Otherwise, users have to input --disable-libstdcxx-pch option
when building bare-metal CANADIAN C++ compiler.

Reviewed-by: Michael Hope
Signed-off-by: Zhenqiang Chen <zhenqiang.chen@linaro.org>
(transplanted from e3e1c9d45bddfbfb433ee9d583faf42fa31f50c0)
     1 --- trunk/src/acos.c	2009/12/08 16:49:43	733
     2 +++ trunk/src/acos.c	2009/12/09 20:51:38	734
     3 @@ -188,10 +188,7 @@
     4    else
     5      rnd_im = rnd_im == GMP_RNDU ? GMP_RNDD
     6        : rnd_im == GMP_RNDD ? GMP_RNDU
     7 -#if MPFR_VERSION_MAJOR >= 3
     8 -      : rnd_im == GMP_RNDA ? GMP_RNDZ
     9 -#endif
    10 -      : rnd_im;
    11 +      : rnd_im; /* both RNDZ and RNDA map to themselves for -asin(z) */
    12    rnd1 = RNDC(GMP_RNDN, rnd_im);
    13    mpfr_init2 (pi_over_2, p);
    14    for (;;)