summaryrefslogtreecommitdiffstats
path: root/tester/covoar/TraceWriterQEMU.cc
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-28 15:39:17 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commit7f7ad0391739ac277682e951d4e79d46a82a89bd (patch)
treef6a1f3f04297f4ae6f13c0c4593aa8ac16595a01 /tester/covoar/TraceWriterQEMU.cc
parentRemove BranchInfoAvailable global variable (diff)
downloadrtems-tools-7f7ad0391739ac277682e951d4e79d46a82a89bd.tar.bz2
Remove TargetInfo global variable
- Remove TargetInfo from app_common - Created the targetInfo_m member variable in CoverageReaderBase, TraceWriterBase, and ObjdumpProcessor - Made functions to set the value of targetInfo_m
Diffstat (limited to '')
-rw-r--r--tester/covoar/TraceWriterQEMU.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tester/covoar/TraceWriterQEMU.cc b/tester/covoar/TraceWriterQEMU.cc
index 01d9cbc..18a6c68 100644
--- a/tester/covoar/TraceWriterQEMU.cc
+++ b/tester/covoar/TraceWriterQEMU.cc
@@ -83,8 +83,8 @@ namespace Trace {
uint8_t taken;
uint8_t notTaken;
- taken = TargetInfo->qemuTakenBit();
- notTaken = TargetInfo->qemuNotTakenBit();
+ taken = targetInfo_m->qemuTakenBit();
+ notTaken = targetInfo_m->qemuNotTakenBit();
//
// Verify that the TraceList has a non-zero size.