Skip to content

Commit

Permalink
x86 test msvc: really disable warning 4799,4730
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Apr 3, 2024
1 parent 8639fef commit 487507d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ SIMDE_DIAGNOSTIC_DISABLE_BUGGY_CASTS_
SIMDE_DIAGNOSTIC_DISABLE_RESERVED_ID_
SIMDE_DIAGNOSTIC_DISABLE_C99_EXTENSIONS_
SIMDE_DIAGNOSTIC_DISABLE_USED_BUT_MARKED_UNUSED_
SIMDE_DIAGNOSTIC_DISABLE_NO_EMMS_INSTRUCTION_
#if defined(HEDLEY_MSVC_VERSION)
__pragma(warning(disable:4730)) // mixing _m64 and floating point expressions may result in incorrect code
#endif

#if defined(HEDLEY_GCC_VERSION) && !(HEDLEY_GCC_VERSION_CHECK(6,0,0))
HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION
Expand All @@ -41,7 +45,6 @@ SIMDE_DIAGNOSTIC_DISABLE_CAST_FUNCTION_TYPE_
SIMDE_DIAGNOSTIC_DISABLE_NON_CONSTANT_AGGREGATE_INITIALIZER_
SIMDE_DIAGNOSTIC_DISABLE_C99_EXTENSIONS_
SIMDE_DIAGNOSTIC_DISABLE_DECLARATION_AFTER_STATEMENT_
SIMDE_DIAGNOSTIC_DISABLE_NO_EMMS_INSTRUCTION_
SIMDE_DIAGNOSTIC_DISABLE_ANNEX_K_

#if \
Expand Down

0 comments on commit 487507d

Please sign in to comment.