changeset 1b6d79c9a603 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=1b6d79c9a603
description:
        ARM: Fix uninitialized value in ARM RTC model.

diffstat:

 src/dev/arm/rtc_pl031.cc |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r c739a3a829f5 -r 1b6d79c9a603 src/dev/arm/rtc_pl031.cc
--- a/src/dev/arm/rtc_pl031.cc  Mon Mar 19 17:34:17 2012 -0400
+++ b/src/dev/arm/rtc_pl031.cc  Wed Mar 21 10:34:05 2012 -0500
@@ -52,8 +52,8 @@
 
 PL031::PL031(Params *p)
     : AmbaIntDevice(p), timeVal(mkutctime(&p->time)), lastWrittenTick(0),
-            loadVal(0), matchVal(0), rawInt(false), pendingInt(false),
-            matchEvent(this)
+            loadVal(0), matchVal(0), rawInt(false), maskInt(false),
+            pendingInt(false), matchEvent(this)
 {
     pioSize = 0xfff;
 }
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to