[ARM] Fix -Wimplicit-fallthrough after D60709/r364331

llvm-svn: 364376
This commit is contained in:
Fangrui Song 2019-06-26 02:34:10 +00:00
parent 69822ae106
commit 6a4c68e187
1 changed files with 3 additions and 4 deletions

View File

@ -14095,10 +14095,10 @@ RCPair ARMTargetLowering::getRegForInlineAsmConstraint(
return RCPair(0U, &ARM::QPR_VFP2RegClass);
break;
}
break;
case 2:
switch (Constraint[0]) {
case 'T':
if (Constraint[0] == 'T') {
switch (Constraint[1]) {
default:
break;
@ -14107,9 +14107,8 @@ RCPair ARMTargetLowering::getRegForInlineAsmConstraint(
case 'o':
return RCPair(0U, &ARM::tGPROddRegClass);
}
default:
break;
}
break;
default:
break;