From 5807717273d404a078404e40f313812c351c1ee6 Mon Sep 17 00:00:00 2001 From: Bryan Perdrizat Date: Thu, 5 Sep 2024 11:14:13 +0200 Subject: [PATCH] fix: remove MemoryQueueEntry compare logs --- components/uArch/CoreModel/debug.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/components/uArch/CoreModel/debug.cpp b/components/uArch/CoreModel/debug.cpp index 51d901f4..1017d566 100644 --- a/components/uArch/CoreModel/debug.cpp +++ b/components/uArch/CoreModel/debug.cpp @@ -85,7 +85,6 @@ MemQueueEntry::describe(std::ostream& anOstream) const if (theValue) { anOstream << " =" << std::hex << *theValue; } if (theExtendedValue) { anOstream << " x=" << *theExtendedValue; } - if (theCompareValue) { anOstream << " ?=" << *theCompareValue; } if (theAnnulled) { anOstream << " {annulled}"; } if (theStoreComplete) { anOstream << " {store-complete}"; }