systemc: Run delta notifications in reverse insertion order.

This is sort of pointless, except that it matches Accellera's behavior.

Change-Id: Ia63f2de998157aa68ce36fdc2ba39ca7a80fecbe
Reviewed-on: https://gem5-review.googlesource.com/c/13295
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
This commit is contained in:
Gabe Black
2018-10-04 15:58:55 -07:00
parent ee3e3278fd
commit 1618220d6d

View File

@@ -330,7 +330,7 @@ Scheduler::runDelta()
try {
while (!deltas.empty())
deltas.front()->run();
deltas.back()->run();
} catch (...) {
throwToScMain();
}