Skip to content
Permalink
Browse files
Merge pull request #10001 from JosJuice/pte-1
PowerPC: Fix bad copypaste in LookupTLBPageAddress
  • Loading branch information
lioncash committed Aug 6, 2021
2 parents 857d1c3 + 37b218b commit 67c06cf
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1282,7 +1282,7 @@ static TLBLookupResult LookupTLBPageAddress(const XCheckTLBFlag flag, const u32
if (tlbe.tag[1] == tag)
{
UPTE2 PTE2;
PTE2.Hex = tlbe.pte[0];
PTE2.Hex = tlbe.pte[1];

// Check if C bit requires updating
if (flag == XCheckTLBFlag::Write)

0 comments on commit 67c06cf

Please sign in to comment.