Remove unreachable code (MSVC warnings)

This commit is contained in:
MerryMage 2020-04-23 15:44:22 +01:00
parent a8a712c801
commit 5c0bb5cc63
24 changed files with 13 additions and 173 deletions

View file

@ -567,8 +567,7 @@ Inst* Inst::GetAssociatedPseudoOperation(Opcode opcode) {
break;
}
ASSERT_MSG(false, "Not a valid pseudo-operation");
return nullptr;
ASSERT_FALSE("Not a valid pseudo-operation");
}
Type Inst::GetType() const {