mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Merge pull request #1868 from rohit-n/sign-compare
Fix -Wsign-compare warnings.
This commit is contained in:
commit
074f246c69
@ -616,7 +616,7 @@ enum TLBLookupResult
|
||||
|
||||
static __forceinline TLBLookupResult LookupTLBPageAddress(const XCheckTLBFlag flag, const u32 vpa, u32 *paddr)
|
||||
{
|
||||
int tag = vpa >> HW_PAGE_INDEX_SHIFT;
|
||||
u32 tag = vpa >> HW_PAGE_INDEX_SHIFT;
|
||||
PowerPC::tlb_entry *tlbe = &PowerPC::ppcState.tlb[flag == FLAG_OPCODE][tag & HW_PAGE_INDEX_MASK];
|
||||
if (tlbe->tag[0] == tag)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user