34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#if !defined __GNUC__
|
|
#pragma warning( disable: 4571 4820 4514 4987 4710 4309 4986 4548 4365 4625 4626 5026 5027 4774)
|
|
// relative include path contains '..'
|
|
// (function) selected for automatic inline expansion
|
|
#pragma warning( disable: 4464 4711 )
|
|
|
|
#include <crtdbg.h>
|
|
#endif
|
|
|
|
#include "../SafeInt.hpp"
|
|
|
|
// Suppress warnings in test files, but not in source header
|
|
#if SAFEINT_COMPILER == VISUAL_STUDIO_COMPILER
|
|
// Disable Spectre mitigation warnings (5045)
|
|
#pragma warning(disable: 4838 4477 4310 5045)
|
|
#elif SAFEINT_COMPILER == CLANG_COMPILER
|
|
#pragma GCC diagnostic ignored "-Wc++11-narrowing"
|
|
#elif SAFEINT_COMPILER == GCC_COMPILER
|
|
#pragma GCC diagnostic ignored "-Wnarrowing"
|
|
#endif
|
|
|
|
namespace mult_verify { void MultVerify(); }
|
|
namespace div_verify { void DivVerify(); }
|
|
namespace sub_verify { void SubVerify(); }
|
|
namespace add_verify { void AddVerify(); }
|
|
namespace mod_verify { void ModVerify(); }
|
|
namespace incdec_verify { void IncDecVerify(); }
|
|
namespace cast_verify { void CastVerify(); }
|
|
namespace negation_verify { void NegationVerify(); }
|
|
|