From bcd93ec24aeb0896f3e5a7d56aadfd0ce9e67f9b Mon Sep 17 00:00:00 2001 From: Chris Kulla Date: Fri, 20 Sep 2024 15:42:47 -0700 Subject: [PATCH] Revert ICC compiler option changes Signed-off-by: Chris Kulla --- src/testrender/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testrender/CMakeLists.txt b/src/testrender/CMakeLists.txt index 23bf292c1..dcd88e0cf 100644 --- a/src/testrender/CMakeLists.txt +++ b/src/testrender/CMakeLists.txt @@ -63,7 +63,7 @@ endif() if (CMAKE_COMPILER_IS_INTELCLANG) # To better match existing test results - add_compile_options("-fp-model=strict") + add_compile_options("-fp-model=precise") # Better performance is likely by not requiring a precise floating point # model, although with slightly different numerical results. endif ()