While I'm wearing my Valgrind hat, memcheck detects a few issues in the regression tests
tlm/bus_dmi
systemc/misc/user_guide/chpt4.4
systemc/datatypes/misc/concat/test07
I haven't looked at the first two. For the last one, here is a cut down version that reproduces the first error.
#include "systemc.h"
#include "valgrind/memcheck.h"
void checkout( const sc_unsigned* actual_p, const sc_unsigned* expected_p )
{
cout << *actual_p <<" " << *expected_p << endl;
cout <<"another line" << endl;
}
int sc_main(int argc, c