changeset 668d24eb6e0f in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=668d24eb6e0f
description:
ruby: Added more info to bridge error message
diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
src/mem/bridge.cc | 4 +++-
diffs (14 lines):
diff -r 5a879a3513dc -r 668d24eb6e0f src/mem/bridge.cc
--- a/src/mem/bridge.cc Wed Nov 18 13:55:57 2009 -0800
+++ b/src/mem/bridge.cc Wed Nov 18 13:55:57 2009 -0800
@@ -93,7 +93,9 @@
fatal("Both ports of bus bridge are not connected to a bus.\n");
if (portA.peerBlockSize() != portB.peerBlockSize())
- fatal("Busses don't have the same block size... Not supported.\n");
+ fatal("port A size %d, port B size %d \n " \
+ "Busses don't have the same block size... Not supported.\n",
+ portA.peerBlockSize(), portB.peerBlockSize());
}
bool
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev