util,systemc: Update the stats API used in one of the examples.
authorGabe Black <gabeblack@google.com>
Fri, 14 Aug 2020 01:19:15 +0000 (18:19 -0700)
committerGabe Black <gabeblack@google.com>
Sun, 16 Aug 2020 04:29:34 +0000 (04:29 +0000)
A new parameter as added to the initText method in March of this year,
but this example code was not updated which prevents it from compiling.

This change adds the parameter to the call and sets it to what the
documenting comments say is the default, true.

Change-Id: Ic8da46dba03f01f338c38a7bc02ba232a90ae349
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/32641
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
util/systemc/gem5_within_systemc/stats.cc

index 5249365137b7723dfc19783e7c6f19ebe8205a65..b073afa0de8953967b48038416da29d1517f152b 100644 (file)
@@ -72,7 +72,7 @@ void statsPrepare()
 void statsDump()
 {
     bool desc = true;
-    Stats::Output *output = Stats::initText(filename, desc);
+    Stats::Output *output = Stats::initText(filename, desc, true);
 
     Stats::processDumpQueue();