Skip to content

Commit b2e0bb6

Browse files
authored
Merge branch 'master' into master
Signed-off-by: Govardhan <saigov14@gmail.com>
2 parents 7088839 + 175595f commit b2e0bb6

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

core/fetch/ICache.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ namespace olympia {
3939
const uint32_t l1_associativity = p->l1_associativity;
4040
const std::string& replacement_policy = p->replacement_policy;
4141
l1_cache_.reset(new CacheFuncModel(getContainer(), l1_size_kb, l1_line_size, replacement_policy, l1_associativity));
42-
4342
sparta::StartupEvent(node, CREATE_SPARTA_HANDLER(ICache, sendInitialCredits_));
4443
}
4544

core/lsu/DCache.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ namespace olympia
5252
const uint32_t l1_line_size = p->l1_line_size;
5353
const uint32_t l1_size_kb = p->l1_size_kb;
5454
const uint32_t l1_associativity = p->l1_associativity;
55-
5655
l1_cache_.reset(new CacheFuncModel(getContainer(), l1_size_kb, l1_line_size, p->replacement_policy, l1_associativity));
5756
addr_decoder_ = l1_cache_->getAddrDecoder();
5857
}

0 commit comments

Comments
 (0)