aboutsummaryrefslogtreecommitdiff
path: root/fesvr/htif.h
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2022-09-22 17:29:50 -0700
committerAndrew Waterman <andrew@sifive.com>2022-10-04 15:40:01 -0700
commitf8752d8feea04303d5f3bdeabce8864b3b2430ed (patch)
tree8dede6336fe10cd2e6f14a354ec7b081ad47980f /fesvr/htif.h
parentac89fe6ce3150dc651238991235b7f2e8ac93aec (diff)
downloadspike-f8752d8feea04303d5f3bdeabce8864b3b2430ed.zip
spike-f8752d8feea04303d5f3bdeabce8864b3b2430ed.tar.gz
spike-f8752d8feea04303d5f3bdeabce8864b3b2430ed.tar.bz2
Suppress several unused-parameter warnings in fesvr
Diffstat (limited to 'fesvr/htif.h')
-rw-r--r--fesvr/htif.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fesvr/htif.h b/fesvr/htif.h
index cf8b2d5..5767e31 100644
--- a/fesvr/htif.h
+++ b/fesvr/htif.h
@@ -65,7 +65,7 @@ class htif_t : public chunked_memif_t
// indicates that the initial program load can skip writing this address
// range to memory, because it has already been loaded through a sideband
- virtual bool is_address_preloaded(addr_t taddr, size_t len) { return false; }
+ virtual bool is_address_preloaded(addr_t, size_t) { return false; }
// Given an address, return symbol from addr2symbol map
const char* get_symbol(uint64_t addr);