From 41b8d3a9efa2b971b62114f6e72064c4b5969bd1 Mon Sep 17 00:00:00 2001 From: SaeHie Park Date: Fri, 21 Apr 2017 23:28:07 +0900 Subject: [PATCH] [x86/Linux] Fix pow of tryrun (dotnet/coreclr#11099) x86/Linux has compatible math pow() This will fix CoreFX System.Tests.MathFTests.Pow() failures Commit migrated from https://github.com/dotnet/coreclr/commit/b156c8459156ffeae7172d88903d2fd0867f874e --- src/coreclr/cross/x86/tryrun.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/cross/x86/tryrun.cmake b/src/coreclr/cross/x86/tryrun.cmake index cfc5208..1bf3da9 100644 --- a/src/coreclr/cross/x86/tryrun.cmake +++ b/src/coreclr/cross/x86/tryrun.cmake @@ -55,7 +55,7 @@ SET( HAVE_COMPATIBLE_ASIN_EXITCODE CACHE STRING "Result from TRY_RUN" FORCE) SET( HAVE_COMPATIBLE_POW_EXITCODE - 1 + 0 CACHE STRING "Result from TRY_RUN" FORCE) SET( HAVE_VALID_NEGATIVE_INF_POW_EXITCODE -- 2.7.4