[llvm] r282786 - Move _chsize_s and _Unwind_Backtrace to the correct position.
Joerg Sonnenberger via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 29 14:42:37 PDT 2016
Author: joerg
Date: Thu Sep 29 16:42:36 2016
New Revision: 282786
URL: http://llvm.org/viewvc/llvm-project?rev=282786&view=rev
Log:
Move _chsize_s and _Unwind_Backtrace to the correct position.
Modified:
llvm/trunk/include/llvm/Config/config.h.cmake
Modified: llvm/trunk/include/llvm/Config/config.h.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Config/config.h.cmake?rev=282786&r1=282785&r2=282786&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Config/config.h.cmake (original)
+++ llvm/trunk/include/llvm/Config/config.h.cmake Thu Sep 29 16:42:36 2016
@@ -295,9 +295,6 @@
/* Define to 1 if you have the <unistd.h> header file. */
#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
-/* Define to 1 if you have the `_Unwind_Backtrace' function. */
-#cmakedefine HAVE__UNWIND_BACKTRACE ${HAVE__UNWIND_BACKTRACE}
-
/* Define to 1 if the system has the type `u_int64_t'. */
#cmakedefine HAVE_U_INT64_T ${HAVE_U_INT64_T}
@@ -313,6 +310,12 @@
/* Have host's _alloca */
#cmakedefine HAVE__ALLOCA ${HAVE__ALLOCA}
+/* Define to 1 if you have the `_chsize_s' function. */
+#cmakedefine HAVE__CHSIZE_S ${HAVE__CHSIZE_S}
+
+/* Define to 1 if you have the `_Unwind_Backtrace' function. */
+#cmakedefine HAVE__UNWIND_BACKTRACE ${HAVE__UNWIND_BACKTRACE}
+
/* Have host's __alloca */
#cmakedefine HAVE___ALLOCA ${HAVE___ALLOCA}
@@ -537,7 +540,4 @@
/* Define to a function implementing strdup */
#cmakedefine strdup ${strdup}
-/* Define to 1 if you have the `_chsize_s' function. */
-#cmakedefine HAVE__CHSIZE_S ${HAVE__CHSIZE_S}
-
#endif
More information about the llvm-commits
mailing list