Wrap #pragma warning with #ifdef _MSC_VER .. #endif
This commit is contained in:
parent
0e8b626d87
commit
276873bf70
6 changed files with 19 additions and 1 deletions
|
@ -17,6 +17,11 @@ class BlockOfCode;
|
|||
|
||||
constexpr size_t SpillCount = 64;
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable:4324) // Structure was padded due to alignment specifier
|
||||
#endif
|
||||
|
||||
struct JitState {
|
||||
JitState() { ResetRSB(); }
|
||||
|
||||
|
@ -24,7 +29,6 @@ struct JitState {
|
|||
std::array<u32, 16> Reg{}; // Current register file.
|
||||
// TODO: Mode-specific register sets unimplemented.
|
||||
|
||||
#pragma warning (suppress : 4324) // Structure was padded due to alignment specifier
|
||||
alignas(u64) std::array<u32, 64> ExtReg{}; // Extension registers.
|
||||
|
||||
std::array<u64, SpillCount> Spill{}; // Spill.
|
||||
|
@ -55,6 +59,10 @@ struct JitState {
|
|||
void SetFpscr(u32 FPSCR);
|
||||
};
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
||||
using CodePtr = const void*;
|
||||
|
||||
} // namespace BackendX64
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
#define CITRA_IGNORE_EXIT(x)
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4244)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdio>
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4244)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include "common/assert.h"
|
||||
|
|
|
@ -20,7 +20,9 @@
|
|||
|
||||
/* Note: this file handles interface with arm core and vfp registers */
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4100)
|
||||
#endif
|
||||
|
||||
#include "common/assert.h"
|
||||
//#include "common/common_funcs.h"
|
||||
|
|
|
@ -51,7 +51,9 @@
|
|||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4100 4244 4245)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
//#include "common/logging/log.h"
|
||||
|
|
|
@ -51,7 +51,9 @@
|
|||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4100 4244 4245)
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <cinttypes>
|
||||
|
|
Loading…
Reference in a new issue