From cae2d8a9514ca5fe707da15377ed1930bf1385ab Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 28 Oct 2004 05:04:20 +0000 Subject: [PATCH] Make sure we test the right variable for the AC_DEFINE llvm-svn: 17302 --- llvm/autoconf/m4/func_isinf.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/autoconf/m4/func_isinf.m4 b/llvm/autoconf/m4/func_isinf.m4 index 1286a7a02363..c936bf920d02 100644 --- a/llvm/autoconf/m4/func_isinf.m4 +++ b/llvm/autoconf/m4/func_isinf.m4 @@ -27,7 +27,7 @@ fi AC_SINGLE_CXX_CHECK([ac_cv_func_finite_in_ieeefp_h], [finite], [], [float f; finite(f);]) -if test "$ac_cv_func_finite_in_ieefp_h" = "yes" ; then +if test "$ac_cv_func_finite_in_ieeefp_h" = "yes" ; then AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in ]) fi