mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Added code to verify that llvm.readio's pointer argument returns something
that matches its return type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12944 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5365b6d143
commit
17f64258cf
@ -638,15 +638,20 @@ void Verifier::visitIntrinsicFunctionCall(Intrinsic::ID ID, CallInst &CI) {
|
|||||||
NumArgs = 1;
|
NumArgs = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Intrinsic:: readio:
|
case Intrinsic:: readio: {
|
||||||
|
const Type * ParamType = FT->getParamType(0);
|
||||||
|
const Type * ReturnType = FT->getReturnType();
|
||||||
|
|
||||||
Assert1(FT->getNumParams() == 1,
|
Assert1(FT->getNumParams() == 1,
|
||||||
"Illegal # arguments for intrinsic function!", IF);
|
"Illegal # arguments for intrinsic function!", IF);
|
||||||
Assert1(FT->getReturnType()->isFirstClassType(),
|
Assert1(ReturnType->isFirstClassType(),
|
||||||
"Return type is not a first class type!", IF);
|
"Return type is not a first class type!", IF);
|
||||||
Assert1(FT->getParamType(0)->getPrimitiveID() == Type::PointerTyID,
|
Assert1(ParamType->getPrimitiveID() == Type::PointerTyID,
|
||||||
"First argument not a pointer!", IF);
|
"First argument not a pointer!", IF);
|
||||||
|
Assert1(((dyn_cast<PointerType>(ParamType)->getContainedType(0)) == ReturnType), "Pointer type doesn't match return type!", IF);
|
||||||
NumArgs = 1;
|
NumArgs = 1;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case Intrinsic::setjmp: NumArgs = 1; break;
|
case Intrinsic::setjmp: NumArgs = 1; break;
|
||||||
case Intrinsic::longjmp: NumArgs = 2; break;
|
case Intrinsic::longjmp: NumArgs = 2; break;
|
||||||
|
Loading…
Reference in New Issue
Block a user