mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Add assert to check return type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47637 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
258bb1b8e8
commit
8e50760dfe
@ -585,13 +585,13 @@ void Verifier::visitReturnInst(ReturnInst &RI) {
|
||||
Assert2(F->getReturnType() == RI.getOperand(0)->getType(),
|
||||
"Function return type does not match operand "
|
||||
"type of return inst!", &RI, F->getReturnType());
|
||||
else {
|
||||
const StructType *STy = cast<StructType>(F->getReturnType());
|
||||
else if (const StructType *STy = dyn_cast<StructType>(F->getReturnType())) {
|
||||
for (unsigned i = 0; i < N; i++)
|
||||
Assert2(STy->getElementType(i) == RI.getOperand(i)->getType(),
|
||||
"Function return type does not match operand "
|
||||
"type of return inst!", &RI, F->getReturnType());
|
||||
}
|
||||
"Function return type does not match operand "
|
||||
"type of return inst!", &RI, F->getReturnType());
|
||||
} else
|
||||
Assert1(0, "Invalid return type!", &RI);
|
||||
|
||||
// Check to make sure that the return value has necessary properties for
|
||||
// terminators...
|
||||
|
Loading…
x
Reference in New Issue
Block a user