Tracing: Fix trace so 'Predicated False' doesn't show up
This commit is contained in:
parent
62c06c1403
commit
75955d6c42
1 changed files with 1 additions and 2 deletions
|
@ -96,14 +96,13 @@ class InstRecord
|
||||||
: when(_when), thread(_thread),
|
: when(_when), thread(_thread),
|
||||||
staticInst(_staticInst), PC(_pc),
|
staticInst(_staticInst), PC(_pc),
|
||||||
macroStaticInst(_macroStaticInst), upc(_upc),
|
macroStaticInst(_macroStaticInst), upc(_upc),
|
||||||
misspeculating(spec)
|
misspeculating(spec), predicate(true)
|
||||||
{
|
{
|
||||||
data_status = DataInvalid;
|
data_status = DataInvalid;
|
||||||
addr_valid = false;
|
addr_valid = false;
|
||||||
|
|
||||||
fetch_seq_valid = false;
|
fetch_seq_valid = false;
|
||||||
cp_seq_valid = false;
|
cp_seq_valid = false;
|
||||||
predicate = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~InstRecord() { }
|
virtual ~InstRecord() { }
|
||||||
|
|
Loading…
Reference in a new issue