floor, ceil, trunc, truncf, truncl: Defeat GCC optimizations.
[gnulib.git] / m4 / ceil.m4
blob87199ed11088c0fe86319b6d0fc243175e7c986a
1 # ceil.m4 serial 12
2 dnl Copyright (C) 2007, 2009-2018 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_CEIL],
9   m4_divert_text([DEFAULTS], [gl_ceil_required=plain])
10   AC_REQUIRE([gl_MATH_H_DEFAULTS])
11   dnl Test whether ceil() can be used without libm.
12   gl_FUNC_CEIL_LIBS
13   if test "$CEIL_LIBM" = "?"; then
14     CEIL_LIBM=
15   fi
16   m4_ifdef([gl_FUNC_CEIL_IEEE], [
17     if test $gl_ceil_required = ieee && test $REPLACE_CEIL = 0; then
18       AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
19       AC_CACHE_CHECK([whether ceil works according to ISO C 99 with IEC 60559],
20         [gl_cv_func_ceil_ieee],
21         [
22           save_LIBS="$LIBS"
23           LIBS="$LIBS $CEIL_LIBM"
24           AC_RUN_IFELSE(
25             [AC_LANG_SOURCE([[
26 #ifndef __NO_MATH_INLINES
27 # define __NO_MATH_INLINES 1 /* for glibc */
28 #endif
29 #include <math.h>
30 ]gl_DOUBLE_MINUS_ZERO_CODE[
31 ]gl_DOUBLE_SIGNBIT_CODE[
32 static double dummy (double f) { return 0; }
33 int main (int argc, char *argv[])
35   double (*my_ceil) (double) = argc ? ceil : dummy;
36   int result = 0;
37   /* Test whether ceil (-0.0) is -0.0.  */
38   if (signbitd (minus_zerod) && !signbitd (my_ceil (minus_zerod)))
39     result |= 1;
40   /* Test whether ceil (-0.3) is -0.0.  */
41   if (signbitd (-0.3) && !signbitd (my_ceil (-0.3)))
42     result |= 2;
43   return result;
45             ]])],
46             [gl_cv_func_ceil_ieee=yes],
47             [gl_cv_func_ceil_ieee=no],
48             [case "$host_os" in
49                               # Guess yes on glibc systems.
50                *-gnu* | gnu*) gl_cv_func_ceil_ieee="guessing yes" ;;
51                               # Guess yes on native Windows.
52                mingw*)        gl_cv_func_ceil_ieee="guessing yes" ;;
53                               # If we don't know, assume the worst.
54                *)             gl_cv_func_ceil_ieee="guessing no" ;;
55              esac
56             ])
57           LIBS="$save_LIBS"
58         ])
59       case "$gl_cv_func_ceil_ieee" in
60         *yes) ;;
61         *) REPLACE_CEIL=1 ;;
62       esac
63     fi
64   ])
65   if test $REPLACE_CEIL = 1; then
66     dnl No libraries are needed to link lib/ceil.c.
67     CEIL_LIBM=
68   fi
69   AC_SUBST([CEIL_LIBM])
72 # Determines the libraries needed to get the ceil() function.
73 # Sets CEIL_LIBM.
74 AC_DEFUN([gl_FUNC_CEIL_LIBS],
76   gl_CACHE_VAL_SILENT([gl_cv_func_ceil_libm], [
77     gl_cv_func_ceil_libm=?
78     AC_LINK_IFELSE(
79       [AC_LANG_PROGRAM(
80          [[#ifndef __NO_MATH_INLINES
81            # define __NO_MATH_INLINES 1 /* for glibc */
82            #endif
83            #include <math.h>
84            double (*funcptr) (double) = ceil;
85            double x;]],
86          [[x = funcptr(x) + ceil(x);]])],
87       [gl_cv_func_ceil_libm=])
88     if test "$gl_cv_func_ceil_libm" = "?"; then
89       save_LIBS="$LIBS"
90       LIBS="$LIBS -lm"
91       AC_LINK_IFELSE(
92         [AC_LANG_PROGRAM(
93            [[#ifndef __NO_MATH_INLINES
94              # define __NO_MATH_INLINES 1 /* for glibc */
95              #endif
96              #include <math.h>
97              double (*funcptr) (double) = ceil;
98              double x;]],
99            [[x = funcptr(x) + ceil(x);]])],
100         [gl_cv_func_ceil_libm="-lm"])
101       LIBS="$save_LIBS"
102     fi
103   ])
104   CEIL_LIBM="$gl_cv_func_ceil_libm"