From a0264ac297f942a02ad8ebfeaf2bf117e7f70aed Mon Sep 17 00:00:00 2001 From: Qichao Gu Date: Wed, 25 Sep 2024 10:48:25 +0800 Subject: [PATCH] fix code format --- test_conformance/math_brute_force/utility.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_conformance/math_brute_force/utility.h b/test_conformance/math_brute_force/utility.h index ae5c4471c0..74cacc46d5 100644 --- a/test_conformance/math_brute_force/utility.h +++ b/test_conformance/math_brute_force/utility.h @@ -216,7 +216,7 @@ inline void Force64BitFPUPrecision(void) new_cw = orig_cw | 0x0300; // set precision to 64-bit __asm__ __volatile__("fldcw %0" ::"m"(new_cw)); #elif defined(_WIN32) \ - && (defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)) + && (defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)) // Unfortunately, usual method (`_controlfp( _PC_64, _MCW_PC );') does *not* // work on win.x64: > On the x64 architecture, changing the floating point // precision is not supported. (Taken from