Skip to content

Commit

Permalink
Merge pull request #32 from Sonicadvance1/ir_cc_print
Browse files Browse the repository at this point in the history
Fixes names of cond names in debug print
  • Loading branch information
Stefanos Kornilios Mitsis Poiitidis authored Mar 17, 2020
2 parents 37dfb63 + dd3a264 commit d25ad38
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions External/FEXCore/Source/Interface/IR/IR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ static void PrintArg(std::stringstream *out, [[maybe_unused]] IRListView<false>
std::array<std::string, 14> CondNames = {
"EQ",
"NEQ",
"CS",
"CC",
"UGE",
"ULT",
"MI",
"PL",
"VS",
"VC",
"HI",
"LS",
"GE",
"LT",
"GT",
"LE",
"UGT",
"ULE",
"SGE",
"SLT",
"SGT",
"SLE",
};

*out << CondNames[Arg];
Expand Down

0 comments on commit d25ad38

Please sign in to comment.