Normally we'd use LLVM_FALLTHROUGH, or now, [[fallthrough]].
But for case labels followed directly by other case labels, we
use neither.
No behavior change.
continue;
switch (symbol->getKind()) {
- case SymbolKind::GlobalSymbol: // Fallthrough
- case SymbolKind::ObjectiveCClass: // Fallthrough
- case SymbolKind::ObjectiveCClassEHType: // Fallthrough
- case SymbolKind::ObjectiveCInstanceVariable: // Fallthrough
+ case SymbolKind::GlobalSymbol:
+ case SymbolKind::ObjectiveCClass:
+ case SymbolKind::ObjectiveCClassEHType:
+ case SymbolKind::ObjectiveCInstanceVariable:
normalSymbols.push_back(symbol);
}
}