Browse Source

Use underscore to indicate unused tuple field

pull/2266/head
Andrew Waterman 1 month ago
parent
commit
2219879651
Failed to extract signature
  1. 2
      riscv/mmu.h

2
riscv/mmu.h

@ -252,7 +252,7 @@ public:
store_slow_path(vaddr, size, nullptr, {}, false, true); store_slow_path(vaddr, size, nullptr, {}, false, true);
} }
auto [tlb_hit, host_addr, paddr] = access_tlb(tlb_store, vaddr); auto [tlb_hit, _, paddr] = access_tlb(tlb_store, vaddr);
if (!tlb_hit) if (!tlb_hit)
paddr = translate(generate_access_info(vaddr, STORE, {}), 1); paddr = translate(generate_access_info(vaddr, STORE, {}), 1);

Loading…
Cancel
Save