forked from OSchip/llvm-project
Remove duplicate/unreachable break (PR47029)
This commit is contained in:
parent
f35992b75b
commit
18212cbcda
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue