Fix symbol defines in config.h.cmake

These were incorrectly pointing to HAVE_LOG despite being checked for
correctly in config-ix.cmake.

Patch by James Lyon!

llvm-svn: 194051
This commit is contained in:
Alp Toker 2013-11-05 07:27:18 +00:00
parent 26cc9bdfc0
commit e5e3bc0c04
1 changed files with 3 additions and 3 deletions

View File

@ -129,13 +129,13 @@
#cmakedefine HAVE_LOG10 ${HAVE_LOG10}
/* Define to 1 if you have the `exp' function. */
#cmakedefine HAVE_EXP ${HAVE_LOG}
#cmakedefine HAVE_EXP ${HAVE_EXP}
/* Define to 1 if you have the `exp2' function. */
#cmakedefine HAVE_EXP2 ${HAVE_LOG2}
#cmakedefine HAVE_EXP2 ${HAVE_EXP2}
/* Define to 1 if you have the `exp10' function. */
#cmakedefine HAVE_EXP10 ${HAVE_LOG10}
#cmakedefine HAVE_EXP10 ${HAVE_EXP10}
/* Define to 1 if you have the `fmodf' function. */
#cmakedefine HAVE_FMODF ${HAVE_FMODF}