Skip to content
Snippets Groups Projects
Commit 099d4909 authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Assert that the VISC launch's function argument is a defined constant.

parent 4edfd5a7
No related branches found
No related tags found
No related merge requests found
......@@ -941,6 +941,7 @@ bool GenVISC::runOnModule(Module &M) {
Function* graphFunc = cast<Function>(CI->getArgOperand(1));
graphFunc = transformReturnTypeToStruct(graphFunc);
Constant* F = ConstantExpr::getPointerCast(graphFunc, Type::getInt8PtrTy(Ctx));
assert(F && "Function invoked by VISC launch has to be define and constant.");
ConstantInt* Op = cast<ConstantInt>(CI->getArgOperand(0));
assert(Op && "VISC launch's streaming argument is a constant value.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment