projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9e4bca
)
ARM: Fix uninitialized value in ARM RTC model.
author
Ali Saidi
<Ali.Saidi@ARM.com>
Wed, 21 Mar 2012 15:34:05 +0000
(10:34 -0500)
committer
Ali Saidi
<Ali.Saidi@ARM.com>
Wed, 21 Mar 2012 15:34:05 +0000
(10:34 -0500)
src/dev/arm/rtc_pl031.cc
patch
|
blob
|
history
diff --git
a/src/dev/arm/rtc_pl031.cc
b/src/dev/arm/rtc_pl031.cc
index 4895b1d4f4e849f617b7552ccc11efc22a8e2019..8896b16ebc8ae9fa3de19ffc296b39817662ecdb 100644
(file)
--- a/
src/dev/arm/rtc_pl031.cc
+++ b/
src/dev/arm/rtc_pl031.cc
@@
-52,8
+52,8
@@
using namespace AmbaDev;
PL031::PL031(Params *p)
: AmbaIntDevice(p), timeVal(mkutctime(&p->time)), lastWrittenTick(0),
- loadVal(0), matchVal(0), rawInt(false),
pending
Int(false),
- matchEvent(this)
+ loadVal(0), matchVal(0), rawInt(false),
mask
Int(false),
+
pendingInt(false),
matchEvent(this)
{
pioSize = 0xfff;
}