From 98f40c54a31457078de587b8a29fdd055b9db28b Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 7 Oct 2018 01:51:25 -0700 Subject: systemc: Remove a redundant error check. If the check doesn't abort the port binding in progress, it will be reported twice. Change-Id: I691ebd0f1598193f861c6085341dcd2fb05dd210 Reviewed-on: https://gem5-review.googlesource.com/c/13327 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/core/port.hh | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/systemc/core/port.hh b/src/systemc/core/port.hh index b9f070ffb..203bafb86 100644 --- a/src/systemc/core/port.hh +++ b/src/systemc/core/port.hh @@ -67,17 +67,8 @@ class Port void addInterface(::sc_core::sc_interface *iface) { - for (int i = 0; i < _size; i++) { - if (getInterface(i) == iface) { - std::string msg = - csprintf("interface already bound to port: port '%s' (%s)", - portBase->name(), portBase->kind()); - SC_REPORT_ERROR("(E107) bind interface to port failed", - msg.c_str()); - } - } - _size++; portBase->_gem5AddInterface(iface); + _size++; } void -- cgit v1.2.3