diff options
Diffstat (limited to 'src/mem/ruby')
-rw-r--r-- | src/mem/ruby/slicc_interface/AbstractController.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/slicc_interface/AbstractController.cc b/src/mem/ruby/slicc_interface/AbstractController.cc index 101a4ce7f..1327eccfb 100644 --- a/src/mem/ruby/slicc_interface/AbstractController.cc +++ b/src/mem/ruby/slicc_interface/AbstractController.cc @@ -382,7 +382,7 @@ AbstractController::MemoryPort::MemoryPort(const std::string &_name, const std::string &_label) : QueuedMasterPort(_name, _controller, reqQueue, snoopRespQueue), reqQueue(*_controller, *this, _label), - snoopRespQueue(*_controller, *this, _label), + snoopRespQueue(*_controller, *this, false, _label), controller(_controller) { } |