Skip to content

Commit 2d5b268

Browse files
committed
removes range-lut dump in scc::router since there is now a memory map dump
1 parent 387b3a6 commit 2d5b268

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/scc/router.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ template <unsigned BUSWIDTH, typename TARGET_SOCKET_TYPE>
243243
void router<BUSWIDTH, TARGET_SOCKET_TYPE>::add_target_range(std::string name, uint64_t base, uint64_t size, bool remap) {
244244
auto it = target_name_lut.find(name);
245245
#ifndef NDEBUG
246-
#if(SYSTEMC_VERSION >= 20171012)
246+
#if (SYSTEMC_VERSION >= 20171012)
247247
if(it == target_name_lut.end()) {
248248
std::stringstream ss;
249249
ss << "No target index entry for '" << name << "' found ";
@@ -388,7 +388,6 @@ void router<BUSWIDTH, TARGET_SOCKET_TYPE>::invalidate_direct_mem_ptr(int id, ::s
388388
}
389389
template <unsigned BUSWIDTH, typename TARGET_SOCKET_TYPE> void router<BUSWIDTH, TARGET_SOCKET_TYPE>::end_of_elaboration() {
390390
addr_decoder.validate();
391-
SCCDEBUG(SCOBJ) << "address map\n" << addr_decoder.toString();
392391
}
393392

394393
} // namespace scc

0 commit comments

Comments
 (0)