Browse Source
Use underscore to indicate unused tuple field
pull/2266/head
Andrew Waterman
1 month ago
Failed to extract signature
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
|
|
|
|
|
|