Remove duplicate/unreachable break (PR47029)

This commit is contained in:
Simon Pilgrim 2020-08-07 11:48:48 +01:00
parent f35992b75b
commit 18212cbcda
1 changed files with 2 additions and 1 deletions

View File

@ -1543,7 +1543,8 @@ static QualType ConvertDeclSpecToType(TypeProcessingState &state) {
<< "__float128"; << "__float128";
Result = Context.Float128Ty; Result = Context.Float128Ty;
break; break;
case DeclSpec::TST_bool: Result = Context.BoolTy; break; // _Bool or bool case DeclSpec::TST_bool:
Result = Context.BoolTy; // _Bool or bool
break; break;
case DeclSpec::TST_decimal32: // _Decimal32 case DeclSpec::TST_decimal32: // _Decimal32
case DeclSpec::TST_decimal64: // _Decimal64 case DeclSpec::TST_decimal64: // _Decimal64