summaryrefslogtreecommitdiff
path: root/src/systemc/channel
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-10-01 23:00:09 -0700
committerGabe Black <gabeblack@google.com>2018-10-16 00:46:36 +0000
commit20fd137dde1550292723962b8f27c6b5ea0ad634 (patch)
tree1830a8104a6b5f00eb94dd353f83636bcc6970b7 /src/systemc/channel
parent167e6c06b5d61d54e3eab48d03eb50ec316aeec3 (diff)
downloadgem5-20fd137dde1550292723962b8f27c6b5ea0ad634.tar.xz
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 <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/channel')
-rw-r--r--src/systemc/channel/sc_signal.cc2
1 files changed, 1 insertions, 1 deletions
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() << ")";