Gabe Black has uploaded this change for review. ( https://gem5-review.googlesource.com/11355

Change subject: systemc: Add m_cur_val and m_new_val to sc_signal.
......................................................................

systemc: Add m_cur_val and m_new_val to sc_signal.

These members are referred to in one of the tests.

Change-Id: Iab0110a0e3acf627986664069622704f17b703a1
---
M src/systemc/ext/channel/sc_signal.hh
1 file changed, 6 insertions(+), 0 deletions(-)



diff --git a/src/systemc/ext/channel/sc_signal.hh b/src/systemc/ext/channel/sc_signal.hh
index dea01a2..31237b6 100644
--- a/src/systemc/ext/channel/sc_signal.hh
+++ b/src/systemc/ext/channel/sc_signal.hh
@@ -158,6 +158,12 @@
         sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
     }

+    // These members which store the current and future value of the signal
+ // are not specified in the standard but are referred to directly by one
+    // of the tests.
+    T m_cur_val;
+    T m_new_val;
+
   private:
     // Disabled
     sc_signal(const sc_signal<T, WRITER_POLICY> &) :

--
To view, visit https://gem5-review.googlesource.com/11355
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: Iab0110a0e3acf627986664069622704f17b703a1
Gerrit-Change-Number: 11355
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