mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Fix "Control reaches the end of non-void function" warnings,
patch by David Chisnall. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48963 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f19f58a936
commit
d27c991ceb
@ -166,6 +166,7 @@ public:
|
|||||||
assert(0 && "Unsupported!");
|
assert(0 && "Unsupported!");
|
||||||
}
|
}
|
||||||
assert(0 && "Illegal empty element");
|
assert(0 && "Illegal empty element");
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
/// find_next - Returns the index of the next set bit starting from the
|
/// find_next - Returns the index of the next set bit starting from the
|
||||||
|
@ -210,6 +210,7 @@ public:
|
|||||||
return getTypeAction(NVT) == Promote ? getTypeToTransformTo(NVT) : NVT;
|
return getTypeAction(NVT) == Promote ? getTypeToTransformTo(NVT) : NVT;
|
||||||
}
|
}
|
||||||
assert(0 && "Unsupported extended type!");
|
assert(0 && "Unsupported extended type!");
|
||||||
|
return MVT::ValueType(); // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getTypeToExpandTo - For types supported by the target, this is an
|
/// getTypeToExpandTo - For types supported by the target, this is an
|
||||||
@ -440,6 +441,7 @@ public:
|
|||||||
return getRegisterType(getTypeToTransformTo(VT));
|
return getRegisterType(getTypeToTransformTo(VT));
|
||||||
}
|
}
|
||||||
assert(0 && "Unsupported extended type!");
|
assert(0 && "Unsupported extended type!");
|
||||||
|
return MVT::ValueType(); // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getNumRegisters - Return the number of registers that this ValueType will
|
/// getNumRegisters - Return the number of registers that this ValueType will
|
||||||
@ -464,6 +466,7 @@ public:
|
|||||||
return (BitWidth + RegWidth - 1) / RegWidth;
|
return (BitWidth + RegWidth - 1) / RegWidth;
|
||||||
}
|
}
|
||||||
assert(0 && "Unsupported extended type!");
|
assert(0 && "Unsupported extended type!");
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ShouldShrinkFPConstant - If true, then instruction selection should
|
/// ShouldShrinkFPConstant - If true, then instruction selection should
|
||||||
|
@ -808,6 +808,7 @@ static SDOperand getCopyFromParts(SelectionDAG &DAG,
|
|||||||
return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
|
return DAG.getNode(ISD::BIT_CONVERT, ValueVT, Val);
|
||||||
|
|
||||||
assert(0 && "Unknown mismatch!");
|
assert(0 && "Unknown mismatch!");
|
||||||
|
return SDOperand();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getCopyToParts - Create a series of nodes that contain the specified value
|
/// getCopyToParts - Create a series of nodes that contain the specified value
|
||||||
|
@ -78,6 +78,7 @@ double LLVMGenericValueToFloat(LLVMTypeRef TyRef, LLVMGenericValueRef GenVal) {
|
|||||||
assert(0 && "LLVMGenericValueToFloat supports only float and double.");
|
assert(0 && "LLVMGenericValueToFloat supports only float and double.");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
void LLVMDisposeGenericValue(LLVMGenericValueRef GenVal) {
|
void LLVMDisposeGenericValue(LLVMGenericValueRef GenVal) {
|
||||||
|
@ -919,6 +919,7 @@ unsigned ARM::GetInstSize(MachineInstr *MI) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
/// GetFunctionSize - Returns the size of the specified MachineFunction.
|
/// GetFunctionSize - Returns the size of the specified MachineFunction.
|
||||||
|
@ -307,6 +307,7 @@ static unsigned AlphaRevCondCode(unsigned Opcode) {
|
|||||||
default:
|
default:
|
||||||
assert(0 && "Unknown opcode");
|
assert(0 && "Unknown opcode");
|
||||||
}
|
}
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
// Branch analysis.
|
// Branch analysis.
|
||||||
|
@ -259,6 +259,7 @@ std::string MSILWriter::getConvModopt(unsigned CallingConvID) {
|
|||||||
cerr << "CallingConvID = " << CallingConvID << '\n';
|
cerr << "CallingConvID = " << CallingConvID << '\n';
|
||||||
assert(0 && "Unsupported calling convention");
|
assert(0 && "Unsupported calling convention");
|
||||||
}
|
}
|
||||||
|
return ""; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -304,6 +305,7 @@ std::string MSILWriter::getPrimitiveTypeName(const Type* Ty, bool isSigned) {
|
|||||||
cerr << "Type = " << *Ty << '\n';
|
cerr << "Type = " << *Ty << '\n';
|
||||||
assert(0 && "Invalid primitive type");
|
assert(0 && "Invalid primitive type");
|
||||||
}
|
}
|
||||||
|
return ""; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -331,6 +333,7 @@ std::string MSILWriter::getTypeName(const Type* Ty, bool isSigned,
|
|||||||
cerr << "Type = " << *Ty << '\n';
|
cerr << "Type = " << *Ty << '\n';
|
||||||
assert(0 && "Invalid type in getTypeName()");
|
assert(0 && "Invalid type in getTypeName()");
|
||||||
}
|
}
|
||||||
|
return ""; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -374,6 +377,7 @@ std::string MSILWriter::getTypePostfix(const Type* Ty, bool Expand,
|
|||||||
cerr << "TypeID = " << Ty->getTypeID() << '\n';
|
cerr << "TypeID = " << Ty->getTypeID() << '\n';
|
||||||
assert(0 && "Invalid type in TypeToPostfix()");
|
assert(0 && "Invalid type in TypeToPostfix()");
|
||||||
}
|
}
|
||||||
|
return ""; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1446,6 +1450,7 @@ unsigned int MSILWriter::getBitWidth(const Type* Ty) {
|
|||||||
cerr << "Bits = " << N << '\n';
|
cerr << "Bits = " << N << '\n';
|
||||||
assert(0 && "Unsupported integer width");
|
assert(0 && "Unsupported integer width");
|
||||||
}
|
}
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -181,6 +181,7 @@ SDOperand MipsTargetLowering::
|
|||||||
LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG)
|
LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG)
|
||||||
{
|
{
|
||||||
assert(0 && "TLS not implemented for MIPS.");
|
assert(0 && "TLS not implemented for MIPS.");
|
||||||
|
return SDOperand(); // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
SDOperand MipsTargetLowering::
|
SDOperand MipsTargetLowering::
|
||||||
|
@ -81,6 +81,7 @@ getRegisterNumbering(unsigned RegEnum)
|
|||||||
case Mips::RA : return 31;
|
case Mips::RA : return 31;
|
||||||
default: assert(0 && "Unknown register number!");
|
default: assert(0 && "Unknown register number!");
|
||||||
}
|
}
|
||||||
|
return 0; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
void MipsRegisterInfo::reMaterialize(MachineBasicBlock &MBB,
|
void MipsRegisterInfo::reMaterialize(MachineBasicBlock &MBB,
|
||||||
|
@ -1104,6 +1104,7 @@ SDOperand PPCTargetLowering::LowerJumpTable(SDOperand Op, SelectionDAG &DAG) {
|
|||||||
SDOperand PPCTargetLowering::LowerGlobalTLSAddress(SDOperand Op,
|
SDOperand PPCTargetLowering::LowerGlobalTLSAddress(SDOperand Op,
|
||||||
SelectionDAG &DAG) {
|
SelectionDAG &DAG) {
|
||||||
assert(0 && "TLS not implemented for PPC.");
|
assert(0 && "TLS not implemented for PPC.");
|
||||||
|
return SDOperand(); // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
SDOperand PPCTargetLowering::LowerGlobalAddress(SDOperand Op,
|
SDOperand PPCTargetLowering::LowerGlobalAddress(SDOperand Op,
|
||||||
@ -1197,6 +1198,7 @@ SDOperand PPCTargetLowering::LowerVAARG(SDOperand Op, SelectionDAG &DAG,
|
|||||||
const PPCSubtarget &Subtarget) {
|
const PPCSubtarget &Subtarget) {
|
||||||
|
|
||||||
assert(0 && "VAARG in ELF32 ABI not implemented yet!");
|
assert(0 && "VAARG in ELF32 ABI not implemented yet!");
|
||||||
|
return SDOperand(); // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
SDOperand PPCTargetLowering::LowerVASTART(SDOperand Op, SelectionDAG &DAG,
|
SDOperand PPCTargetLowering::LowerVASTART(SDOperand Op, SelectionDAG &DAG,
|
||||||
|
@ -244,6 +244,7 @@ namespace {
|
|||||||
*Node2 = getNodeForBlock(BB2);
|
*Node2 = getNodeForBlock(BB2);
|
||||||
return Node1 && Node2 && Node1->dominates(Node2);
|
return Node1 && Node2 && Node1->dominates(Node2);
|
||||||
}
|
}
|
||||||
|
return false; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -1413,6 +1414,7 @@ namespace {
|
|||||||
if (!Node) return false;
|
if (!Node) return false;
|
||||||
return Top->dominates(Node);
|
return Top->dominates(Node);
|
||||||
}
|
}
|
||||||
|
return false; // Not reached
|
||||||
}
|
}
|
||||||
|
|
||||||
// aboveOrBelow - true if the Instruction either dominates or is dominated
|
// aboveOrBelow - true if the Instruction either dominates or is dominated
|
||||||
|
Loading…
x
Reference in New Issue
Block a user