From: Curtis Dunham Date: Sat, 27 Sep 2014 13:08:30 +0000 (-0400) Subject: mem: Provide better diagnostic for unconnected port X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=725be98fe8002b897e137db26453754152f41606;p=gem5.git mem: Provide better diagnostic for unconnected port When _masterPort is null, a message to that effect is more helpful than a segfault. --- diff --git a/src/mem/port.hh b/src/mem/port.hh index 8fefb2f3a..28f4d7d68 100644 --- a/src/mem/port.hh +++ b/src/mem/port.hh @@ -404,7 +404,11 @@ class SlavePort : public BaseSlavePort /** * Called by the owner to send a range change */ - void sendRangeChange() const { _masterPort->recvRangeChange(); } + void sendRangeChange() const { + if (!_masterPort) + fatal("%s cannot sendRangeChange() without master port", name()); + _masterPort->recvRangeChange(); + } /** * Get a list of the non-overlapping address ranges the owner is