File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ enum CondCode {
5757
5858static inline M68k::CondCode GetOppositeBranchCondition (M68k::CondCode CC) {
5959 // To reverse a condition it's necessary to only invert the low bit:
60- assert (CC != COND_INVALID && " COND_INVALID has no inverse!" );
60+ assert (CC != M86k:: COND_INVALID && " COND_INVALID has no inverse!" );
6161 return static_cast <CondCode>(static_cast <unsigned >(CC) ^ 0x1 );
6262}
6363
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ enum CondCode {
4646
4747CondCode getOppositeBranchCondition (CondCode CC) {
4848 // To reverse a condition it's necessary to only invert the low bit:
49- assert (CC != COND_INVALID && " COND_INVALID has no inverse!" );
49+ assert (CC != RISCVCC:: COND_INVALID && " COND_INVALID has no inverse!" );
5050 return static_cast <CondCode>(static_cast <unsigned >(CC) ^ 0x1 );
5151}
5252
You can’t perform that action at this time.
0 commit comments