Rearrange some `#include`s
This commit is contained in:
parent
7cef13031f
commit
72d4eba477
|
@ -25,9 +25,9 @@
|
|||
#include "types.h"
|
||||
#include "MemConstants.h"
|
||||
#include "Args.h"
|
||||
#include "ARMJIT_Memory.h"
|
||||
|
||||
#ifdef JIT_ENABLED
|
||||
#include "ARMJIT_Memory.h"
|
||||
#include "JitBlock.h"
|
||||
|
||||
#if defined(__APPLE__) && defined(__aarch64__)
|
||||
|
|
|
@ -20,11 +20,11 @@
|
|||
#define ARMJIT_MEMORY
|
||||
|
||||
#include "types.h"
|
||||
#include "TinyVector.h"
|
||||
|
||||
#include "ARM.h"
|
||||
#include "MemConstants.h"
|
||||
|
||||
#ifdef JIT_ENABLED
|
||||
# include "TinyVector.h"
|
||||
# include "ARM.h"
|
||||
# if defined(__SWITCH__)
|
||||
# include <switch.h>
|
||||
# elif defined(_WIN32)
|
||||
|
@ -36,17 +36,17 @@
|
|||
# include <unistd.h>
|
||||
# include <signal.h>
|
||||
# endif
|
||||
|
||||
#ifndef JIT_ENABLED
|
||||
#else
|
||||
# include <array>
|
||||
#include "NDS.h"
|
||||
#endif
|
||||
|
||||
namespace melonDS
|
||||
{
|
||||
#ifdef JIT_ENABLED
|
||||
namespace Platform { struct DynamicLibrary; }
|
||||
class Compiler;
|
||||
class ARMJIT;
|
||||
#endif
|
||||
|
||||
constexpr u32 RoundUp(u32 size) noexcept
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue