mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
Teach the table generator to not generate switch statements containing only a default label with no cases. This solves some warnings with MSVC.
No functional changes intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208694 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3beea23c1b
commit
b37b01d95c
@ -1008,20 +1008,23 @@ void AsmWriterEmitter::EmitPrintAliasInstruction(raw_ostream &O) {
|
||||
O << "void " << Target.getName() << ClassName << "::"
|
||||
<< "printCustomAliasOperand(\n"
|
||||
<< " const MCInst *MI, unsigned OpIdx,\n"
|
||||
<< " unsigned PrintMethodIdx, raw_ostream &OS) {\n"
|
||||
<< " switch (PrintMethodIdx) {\n"
|
||||
<< " default:\n"
|
||||
<< " llvm_unreachable(\"Unknown PrintMethod kind\");\n"
|
||||
<< " break;\n";
|
||||
|
||||
for (unsigned i = 0; i < PrintMethods.size(); ++i) {
|
||||
O << " case " << i << ":\n"
|
||||
<< " " << PrintMethods[i] << "(MI, OpIdx, OS);\n"
|
||||
<< " unsigned PrintMethodIdx, raw_ostream &OS) {\n";
|
||||
if (PrintMethods.empty())
|
||||
O << " llvm_unreachable(\"Unknown PrintMethod kind\");\n";
|
||||
else {
|
||||
O << " switch (PrintMethodIdx) {\n"
|
||||
<< " default:\n"
|
||||
<< " llvm_unreachable(\"Unknown PrintMethod kind\");\n"
|
||||
<< " break;\n";
|
||||
}
|
||||
|
||||
O << " }\n"
|
||||
<< "}\n\n";
|
||||
for (unsigned i = 0; i < PrintMethods.size(); ++i) {
|
||||
O << " case " << i << ":\n"
|
||||
<< " " << PrintMethods[i] << "(MI, OpIdx, OS);\n"
|
||||
<< " break;\n";
|
||||
}
|
||||
O << " }\n";
|
||||
}
|
||||
O << "}\n\n";
|
||||
|
||||
O << "#endif // PRINT_ALIAS_INSTR\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user