Move cycles up in cost combo selector.

This commit is contained in:
Bartosz Taudul 2021-06-20 12:50:13 +02:00
parent c445c3805c
commit 5efc03cdf9
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ static SourceView::RegsX86 s_regMapX86[X86_REG_ENDING];
static constexpr const char* s_CostName[] = { static constexpr const char* s_CostName[] = {
"Sample count", "Sample count",
"Cycles",
"Slow branches", "Slow branches",
"Slow cache", "Slow cache",
"Cycles",
"Retirements", "Retirements",
"Branches taken", "Branches taken",
"Branch miss", "Branch miss",

View File

@ -38,9 +38,9 @@ public:
enum class CostType enum class CostType
{ {
SampleCount, SampleCount,
Cycles,
SlowBranches, SlowBranches,
SlowCache, SlowCache,
Cycles,
Retirements, Retirements,
BranchesTaken, BranchesTaken,
BranchMiss, BranchMiss,