Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-04-01 19:46:46 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-04-01 19:46:46 +0300
commit381f7067965621c18bef902b0def6bf7b80d23a4 (patch)
tree6462f37f73349221971928cbab7e740300c16ffa /server/TracyWorker.hpp
parent4a8c4bde343199e37adf44834c3e4922409e1908 (diff)
Remember if there is branch retirement data.
Diffstat (limited to 'server/TracyWorker.hpp')
-rw-r--r--server/TracyWorker.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/TracyWorker.hpp b/server/TracyWorker.hpp
index 439bc458..d44977aa 100644
--- a/server/TracyWorker.hpp
+++ b/server/TracyWorker.hpp
@@ -391,6 +391,7 @@ private:
unordered_flat_map<const char*, MemoryBlock, charutil::Hasher, charutil::Comparator> sourceFileCache;
unordered_flat_map<uint64_t, HwSampleData> hwSamples;
+ bool hasBranchRetirement = false;
unordered_flat_map<uint64_t, uint64_t> fiberToThreadMap;
};