[llvm][unittests] Silence warning on MSVC after 5b2423183c

Differential revision: https://reviews.llvm.org/D149609
This commit is contained in:
Alexandre Ganea 2023-05-02 08:49:35 -04:00
parent 73e15b5edb
commit 8efc7de0e6

View File

@ -21,3 +21,8 @@ add_llvm_unittest(ObjectTests
) )
target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport) target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport)
if (MSVC)
# Disable warning C4309: '=': truncation of constant value
set_source_files_properties(GOFFObjectFileTest.cpp PROPERTIES COMPILE_FLAGS -wd4309)
endif()