1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[X86] Add missing break to the end of the last case in a switch. NFC

This commit is contained in:
Craig Topper 2019-12-04 12:12:22 -08:00
parent ea976e9c1e
commit 9f09696b6e

View File

@ -3132,6 +3132,7 @@ unsigned X86AsmParser::checkTargetMatchPredicate(MCInst &Inst) {
case X86::VCVTTSS2SI64Zrm: case X86::VCVTTSS2SI64Zrm_Int:
if (ForcedVEXEncoding != VEXEncoding_EVEX)
return Match_Unsupported;
break;
}
return Match_Success;