From 20fd137dde1550292723962b8f27c6b5ea0ad634 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 1 Oct 2018 23:00:09 -0700 Subject: systemc: Fix a typo in one of the error messages. This typo was added purposefully to match Accellera's output, but then it was discovered that some test's golden output had the typo, and some didn't. That must mean that not all tests have up to date output, and that Accellera couldn't possibly pass all of their own tests. To resolve this conflict, this change fixes the typo and manually updates all the golden output. Change-Id: I3d80f74ff21e844609e7bde5dfcd99fc56c085b0 Reviewed-on: https://gem5-review.googlesource.com/c/13204 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/channel/sc_signal.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/systemc/channel') diff --git a/src/systemc/channel/sc_signal.cc b/src/systemc/channel/sc_signal.cc index e2c9bdf9e..702f20901 100644 --- a/src/systemc/channel/sc_signal.cc +++ b/src/systemc/channel/sc_signal.cc @@ -77,7 +77,7 @@ reportSignalError(ScSignalBase *sig, sc_core::sc_object *first, { std::ostringstream ss; ss << "\n signal " << "`" << sig->name() << "' (" << sig->kind() << ")"; - ss << "\n first driver `" << first->name() << "' (" << + ss << "\n first driver `" << first->name() << "' (" << first->kind() << ")"; ss << "\n second driver `" << second->name() << "' (" << second->kind() << ")"; -- cgit v1.2.3