From e38594f758d0e01db763724d73cae19c02d65ca0 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 5 Sep 2018 00:06:26 -0700 Subject: systemc: "Fix" some error message formatting. These changes make the output match what Accellera outputs so that the tests will pass. Change-Id: I1260cec35fa39586fbef39047b9da4ff3c03b3ed Reviewed-on: https://gem5-review.googlesource.com/c/12592 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/dt/int/sc_unsigned.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/systemc/dt/int/sc_unsigned.cc') diff --git a/src/systemc/dt/int/sc_unsigned.cc b/src/systemc/dt/int/sc_unsigned.cc index aca49bac6..ffea95a68 100644 --- a/src/systemc/dt/int/sc_unsigned.cc +++ b/src/systemc/dt/int/sc_unsigned.cc @@ -140,7 +140,7 @@ sc_unsigned::invalid_range(int l, int r) const { std::stringstream msg; msg << "sc_biguint part selection: left = " << - l << ", right = " << r << "\n" + l << ", right = " << r << " \n" " violates either (" << (nbits - 2) << " >= left >= 0) or " "(" << (nbits-2) << " >= right >= 0)"; SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str()); -- cgit v1.2.3