From 29fee42187930c4d81755ba3dd3bc1ca53feebaf Mon Sep 17 00:00:00 2001 From: Alex White Date: Fri, 16 Apr 2021 13:12:46 -0500 Subject: Revert "covoar/TargetBase: Fix QEMU branch info" This reverts commit e80fd3e75b25627b6b2be2c1c820895319a91f34. The change was originally made to correct the taken/not taken analysis of AArch64. This broke taken/not taken analysis on other architectures where the behavior was not overridden in the appropriate Target_* class. --- tester/covoar/TargetBase.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tester/covoar/TargetBase.cc b/tester/covoar/TargetBase.cc index c11129b..4474fad 100644 --- a/tester/covoar/TargetBase.cc +++ b/tester/covoar/TargetBase.cc @@ -130,12 +130,12 @@ namespace Target { uint8_t TargetBase::qemuTakenBit(void) { - return TRACE_OP_BR1; + return TRACE_OP_BR0; } uint8_t TargetBase::qemuNotTakenBit(void) { - return TRACE_OP_BR0; + return TRACE_OP_BR1; } } -- cgit v1.2.3