Silence a bunch of implicit fallthrough warnings

llvm-svn: 321114
This commit is contained in:
Adrian Prantl 2017-12-19 22:05:25 +00:00
parent f81727d138
commit 0e6694d111
17 changed files with 22 additions and 7 deletions

View File

@ -4368,6 +4368,7 @@ static Optional<BinaryOp> MatchBinaryOp(Value *V, DominatorTree &DT) {
default: default:
break; break;
} }
break;
} }
default: default:

View File

@ -2033,6 +2033,7 @@ const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) {
} }
} }
// else fallthrough // else fallthrough
LLVM_FALLTHROUGH;
// The MC library also has a right-shift operator, but it isn't consistently // The MC library also has a right-shift operator, but it isn't consistently
// signed or unsigned between different targets. // signed or unsigned between different targets.

View File

@ -10201,7 +10201,7 @@ SDValue DAGCombiner::visitFMUL(SDNode *N) {
case ISD::SETLT: case ISD::SETLT:
case ISD::SETLE: case ISD::SETLE:
std::swap(TrueOpnd, FalseOpnd); std::swap(TrueOpnd, FalseOpnd);
// Fall through LLVM_FALLTHROUGH;
case ISD::SETOGT: case ISD::SETOGT:
case ISD::SETUGT: case ISD::SETUGT:
case ISD::SETOGE: case ISD::SETOGE:

View File

@ -252,6 +252,7 @@ bool ResourcePriorityQueue::isResourceAvailable(SUnit *SU) {
if (!ResourcesModel->canReserveResources(&TII->get( if (!ResourcesModel->canReserveResources(&TII->get(
SU->getNode()->getMachineOpcode()))) SU->getNode()->getMachineOpcode())))
return false; return false;
break;
case TargetOpcode::EXTRACT_SUBREG: case TargetOpcode::EXTRACT_SUBREG:
case TargetOpcode::INSERT_SUBREG: case TargetOpcode::INSERT_SUBREG:
case TargetOpcode::SUBREG_TO_REG: case TargetOpcode::SUBREG_TO_REG:

View File

@ -83,6 +83,7 @@ bool DWARFAcceleratorTable::validateForms() {
!FormValue.isFormClass(DWARFFormValue::FC_Flag)) || !FormValue.isFormClass(DWARFFormValue::FC_Flag)) ||
FormValue.getForm() == dwarf::DW_FORM_sdata) FormValue.getForm() == dwarf::DW_FORM_sdata)
return false; return false;
break;
default: default:
break; break;
} }

View File

@ -8,6 +8,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "llvm/Demangle/Demangle.h" #include "llvm/Demangle/Demangle.h"
#include "llvm/Support/Compiler.h"
// This file exports a single function: llvm::itanium_demangle. // This file exports a single function: llvm::itanium_demangle.
// It also has no dependencies on the rest of llvm. It is implemented this way // It also has no dependencies on the rest of llvm. It is implemented this way
@ -1947,7 +1948,7 @@ static const char *parse_type(const char *first, const char *last, C &db) {
break; break;
} }
} }
// falls through LLVM_FALLTHROUGH;
default: default:
// must check for builtin-types before class-enum-types to avoid // must check for builtin-types before class-enum-types to avoid
// ambiguities with operator-names // ambiguities with operator-names

View File

@ -1674,6 +1674,7 @@ static ICmpInst::Predicate evaluateICmpRelation(Constant *V1, Constant *V2,
} }
} }
} }
break;
} }
default: default:
break; break;

View File

@ -138,6 +138,7 @@ StringRef llvm::object::getELFRelocationTypeName(uint32_t Machine,
default: default:
break; break;
} }
break;
case ELF::EM_BPF: case ELF::EM_BPF:
switch (Type) { switch (Type) {
#include "llvm/BinaryFormat/ELFRelocs/BPF.def" #include "llvm/BinaryFormat/ELFRelocs/BPF.def"

View File

@ -739,7 +739,6 @@ ARM::ProfileKind ARM::parseArchProfile(StringRef Arch) {
case ARM::ArchKind::ARMV8_2A: case ARM::ArchKind::ARMV8_2A:
case ARM::ArchKind::ARMV8_3A: case ARM::ArchKind::ARMV8_3A:
return ARM::ProfileKind::A; return ARM::ProfileKind::A;
LLVM_FALLTHROUGH;
case ARM::ArchKind::ARMV2: case ARM::ArchKind::ARMV2:
case ARM::ArchKind::ARMV2A: case ARM::ArchKind::ARMV2A:
case ARM::ArchKind::ARMV3: case ARM::ArchKind::ARMV3:

View File

@ -5135,11 +5135,12 @@ bool AArch64FastISel::fastSelectInstruction(const Instruction *I) {
return selectAtomicCmpXchg(cast<AtomicCmpXchgInst>(I)); return selectAtomicCmpXchg(cast<AtomicCmpXchgInst>(I));
} }
// fall-back to target-independent instruction selection.
return selectOperator(I, I->getOpcode());
// Silence warnings. // Silence warnings.
(void)&CC_AArch64_DarwinPCS_VarArg; (void)&CC_AArch64_DarwinPCS_VarArg;
(void)&CC_AArch64_Win64_VarArg; (void)&CC_AArch64_Win64_VarArg;
// fall-back to target-independent instruction selection.
return selectOperator(I, I->getOpcode());
} }
namespace llvm { namespace llvm {

View File

@ -1416,7 +1416,7 @@ bool ARMFastISel::ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
case MVT::i8: case MVT::i8:
case MVT::i16: case MVT::i16:
needsExt = true; needsExt = true;
// Intentional fall-through. LLVM_FALLTHROUGH;
case MVT::i32: case MVT::i32:
if (isThumb2) { if (isThumb2) {
if (!UseImm) if (!UseImm)

View File

@ -13741,7 +13741,7 @@ Instruction *ARMTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
case AtomicOrdering::SequentiallyConsistent: case AtomicOrdering::SequentiallyConsistent:
if (!Inst->hasAtomicStore()) if (!Inst->hasAtomicStore())
return nullptr; // Nothing to do return nullptr; // Nothing to do
/*FALLTHROUGH*/ LLVM_FALLTHROUGH;
case AtomicOrdering::Release: case AtomicOrdering::Release:
case AtomicOrdering::AcquireRelease: case AtomicOrdering::AcquireRelease:
if (Subtarget->preferISHSTBarriers()) if (Subtarget->preferISHSTBarriers())

View File

@ -2386,6 +2386,7 @@ static DecodeStatus DecodeVLDInstruction(MCInst &Inst, unsigned Insn,
case ARM::VLD4q32_UPD: case ARM::VLD4q32_UPD:
if (!Check(S, DecodeDPRRegisterClass(Inst, (Rd+2)%32, Address, Decoder))) if (!Check(S, DecodeDPRRegisterClass(Inst, (Rd+2)%32, Address, Decoder)))
return MCDisassembler::Fail; return MCDisassembler::Fail;
break;
default: default:
break; break;
} }
@ -3326,6 +3327,7 @@ static DecodeStatus DecodeT2AddrModeSOReg(MCInst &Inst, unsigned Val,
case ARM::t2STRs: case ARM::t2STRs:
if (Rn == 15) if (Rn == 15)
return MCDisassembler::Fail; return MCDisassembler::Fail;
break;
default: default:
break; break;
} }
@ -3391,6 +3393,7 @@ static DecodeStatus DecodeT2LoadShift(MCInst &Inst, unsigned Insn,
break; break;
case ARM::t2LDRSBs: case ARM::t2LDRSBs:
Inst.setOpcode(ARM::t2PLIs); Inst.setOpcode(ARM::t2PLIs);
break;
default: default:
break; break;
} }
@ -3854,6 +3857,7 @@ static DecodeStatus DecodeT2AddrModeImm12(MCInst &Inst, unsigned Val,
case ARM::t2STRHi12: case ARM::t2STRHi12:
if (Rn == 15) if (Rn == 15)
return MCDisassembler::Fail; return MCDisassembler::Fail;
break;
default: default:
break; break;
} }

View File

@ -863,6 +863,7 @@ int PartialInlinerImpl::computeBBInlineCost(BasicBlock *BB) {
case Instruction::GetElementPtr: case Instruction::GetElementPtr:
if (cast<GetElementPtrInst>(I)->hasAllZeroIndices()) if (cast<GetElementPtrInst>(I)->hasAllZeroIndices())
continue; continue;
break;
default: default:
break; break;
} }

View File

@ -1346,6 +1346,7 @@ void DevirtModule::importResolution(VTableSlot Slot, VTableSlotInfo &SlotInfo) {
Constant *Bit = importConstant(Slot, CSByConstantArg.first, "bit", Int8Ty, Constant *Bit = importConstant(Slot, CSByConstantArg.first, "bit", Int8Ty,
ResByArg.Bit); ResByArg.Bit);
applyVirtualConstProp(CSByConstantArg.second, "", Byte, Bit); applyVirtualConstProp(CSByConstantArg.second, "", Byte, Bit);
break;
} }
default: default:
break; break;

View File

@ -4017,6 +4017,7 @@ static bool collectValuesToDemote(Value *V, SmallPtrSetImpl<Value *> &Expr,
// seed additional demotion, we save the truncated value. // seed additional demotion, we save the truncated value.
case Instruction::Trunc: case Instruction::Trunc:
Roots.push_back(I->getOperand(0)); Roots.push_back(I->getOperand(0));
break;
case Instruction::ZExt: case Instruction::ZExt:
case Instruction::SExt: case Instruction::SExt:
break; break;

View File

@ -717,6 +717,7 @@ void IntrinsicEmitter::EmitAttributes(const CodeGenIntrinsicTable &Ints,
if (addComma) if (addComma)
OS << ","; OS << ",";
OS << "Attribute::InaccessibleMemOrArgMemOnly"; OS << "Attribute::InaccessibleMemOrArgMemOnly";
break;
case CodeGenIntrinsic::ReadWriteMem: case CodeGenIntrinsic::ReadWriteMem:
break; break;
} }