CPU/CodeCache: Add static to a couple of missing functions

This commit is contained in:
Stenzek 2024-12-27 12:56:23 +10:00
parent a44dd1882f
commit ce71b168c3
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ static Block* LookupBlock(u32 pc);
static Block* CreateBlock(u32 pc, const BlockInstructionList& instructions, const BlockMetadata& metadata);
static bool IsBlockCodeCurrent(const Block* block);
static bool RevalidateBlock(Block* block);
PageProtectionMode GetProtectionModeForPC(u32 pc);
PageProtectionMode GetProtectionModeForBlock(const Block* block);
static PageProtectionMode GetProtectionModeForPC(u32 pc);
static PageProtectionMode GetProtectionModeForBlock(const Block* block);
static bool ReadBlockInstructions(u32 start_pc, BlockInstructionList* instructions, BlockMetadata* metadata);
static void FillBlockRegInfo(Block* block);
static void CopyRegInfo(InstructionInfo* dst, const InstructionInfo* src);