Gabe Black has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/12970

Change subject: systemc: Add a warning to sc_interface::default_event.
......................................................................

systemc: Add a warning to sc_interface::default_event.

The default implementation returns a dummy event, but in the Accellera
implementation it also prints a warning. Print a warning as well, so
that the output matches for the tests.

Change-Id: I1ae2755685515c3fe538f4075af396e963cf155d
---
M src/systemc/core/sc_interface.cc
1 file changed, 2 insertions(+), 0 deletions(-)



diff --git a/src/systemc/core/sc_interface.cc b/src/systemc/core/sc_interface.cc
index 171422d..a236126 100644
--- a/src/systemc/core/sc_interface.cc
+++ b/src/systemc/core/sc_interface.cc
@@ -30,6 +30,7 @@
 #include "base/logging.hh"
 #include "systemc/ext/core/sc_event.hh"
 #include "systemc/ext/core/sc_interface.hh"
+#include "systemc/ext/utils/sc_report_handler.hh"

 namespace sc_core
 {
@@ -37,6 +38,7 @@
 const sc_event &
 sc_interface::default_event() const
 {
+    SC_REPORT_WARNING("(W116) channel doesn't have a default event", "");
     static sc_event dummy;
     return dummy;
 }

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/12970
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I1ae2755685515c3fe538f4075af396e963cf155d
Gerrit-Change-Number: 12970
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to