read-rtl.c: Adapt to use HAVE_DECL_ATOLL instead of HAVE_ATOLL.
authorAndreas Tobler <andreast@gcc.gnu.org>
Mon, 1 Jun 2015 19:46:17 +0000 (21:46 +0200)
committerAndreas Tobler <andreast@gcc.gnu.org>
Mon, 1 Jun 2015 19:46:17 +0000 (21:46 +0200)
2015-06-01  Andreas Tobler  <andreast@gcc.gnu.org>

    * read-rtl.c: Adapt to use HAVE_DECL_ATOLL instead of HAVE_ATOLL.
    * config.in: Regenerate.

From-SVN: r223996

gcc/ChangeLog
gcc/config.in
gcc/read-rtl.c

index 40f0c1f4684dcc525b1e0f4364e8caaff387d0ee..a7f3071e91375f4ee526a2e37ac20a571e85e055 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-01  Andreas Tobler  <andreast@gcc.gnu.org>
+
+       * read-rtl.c: Adapt to use HAVE_DECL_ATOLL instead of HAVE_ATOLL.
+       * config.in: Regenerate.
+
 2015-06-01  Yuri Rumyantsev  <ysrumyan@gmail.com>
 
        * tree-vect-data-refs.c (vect_analyze_data_ref_access): Allow
index daaf9067e4f4f5ffd5f0930475f43ad49a38a7a6..3aee936c473e2e316bf0bc807df264a4eeaf8fcf 100644 (file)
 #endif
 
 
-/* Define to 1 if you have the `atoll' function. */
-#ifndef USED_FOR_TARGET
-#undef HAVE_ATOLL
-#endif
-
-
 /* Define to 1 if you have the `atoq' function. */
 #ifndef USED_FOR_TARGET
 #undef HAVE_ATOQ
 #endif
 
 
-/* Define to 1 if we found a declaration for 'basename', otherwise define to
-   0. */
+/* Define to 1 if we found a declaration for 'atoll', otherwise define to 0.
+   */
+#ifndef USED_FOR_TARGET
+#undef HAVE_DECL_ATOLL
+#endif
+
+
+/* Define to 1 if you have the declaration of `basename(const char*)', and to
+   0 if you don't. */
 #ifndef USED_FOR_TARGET
 #undef HAVE_DECL_BASENAME
 #endif
 #endif
 
 
-/* Define to 1 if we found a declaration for 'strstr', otherwise define to 0.
-   */
+/* Define to 1 if you have the declaration of `strstr(const char*,const
+   char*)', and to 0 if you don't. */
 #ifndef USED_FOR_TARGET
 #undef HAVE_DECL_STRSTR
 #endif
index 749efaff8af4691a0ec3a9b4be4cf16ffd3b0b10..138f179610c4ee31aa796d823278b709d27c4b73 100644 (file)
@@ -704,7 +704,7 @@ initialize_iterators (void)
 \f
 /* Provide a version of a function to read a long long if the system does
    not provide one.  */
-#if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
+#if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !HAVE_DECL_ATOLL && !defined(HAVE_ATOQ)
 HOST_WIDE_INT atoll (const char *);
 
 HOST_WIDE_INT
@@ -1328,7 +1328,7 @@ read_rtx_code (const char *code_name)
 #else
        /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
           But prefer not to use our hand-rolled function above either.  */
-#if defined(HAVE_ATOLL) || !defined(HAVE_ATOQ)
+#if HAVE_DECL_ATOLL || !defined(HAVE_ATOQ)
        tmp_wide = atoll (name.string);
 #else
        tmp_wide = atoq (name.string);