[llvm] r282762 - Add FE_ALL_EXCEPT and FE_INEXACT detection macros forgotten on the cmake

Joerg Sonnenberger via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 29 13:59:49 PDT 2016


Author: joerg
Date: Thu Sep 29 15:59:48 2016
New Revision: 282762

URL: http://llvm.org/viewvc/llvm-project?rev=282762&view=rev
Log:
Add FE_ALL_EXCEPT and FE_INEXACT detection macros forgotten on the cmake
side of configuration.

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=282762&r1=282761&r2=282762&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Config/config.h.cmake (original)
+++ llvm/trunk/include/llvm/Config/config.h.cmake Thu Sep 29 15:59:48 2016
@@ -34,6 +34,14 @@
 /* can use __crashreporter_info__ */
 #undef HAVE_CRASHREPORTER_INFO
 
+/* Define to 1 if you have the declaration of `FE_ALL_EXCEPT', and to 0 if you
+   don't. */
+#cmakedefine01 HAVE_DECL_FE_ALL_EXCEPT
+
+/* Define to 1 if you have the declaration of `FE_INEXACT', and to 0 if you
+   don't. */
+#cmakedefine01 HAVE_DECL_FE_INEXACT
+
 /* Define to 1 if you have the declaration of `strerror_s', and to 0 if you
    don't. */
 #cmakedefine01 HAVE_DECL_STRERROR_S




More information about the llvm-commits mailing list