Displaying 1 result from an estimated 1 matches for "ngetnumparams".
Did you mean:
getnumparams
2012 Jul 26
1
[LLVMdev] Calling a function with bad signature, possible bug.
...errs() << "\nparamtype end----------- \n";
Args[i]->getType()->dump();
errs() << "\ngettype end ------------\n";
errs() << i << "\ni------------------\n";
errs() << FTy->getNumParams() << "\ngetnumparams end ------------\n";
errs() << "assert " << (FTy->getParamType(i) == Args[i]->getType()) << "\n";
assert((i >= FTy->getNumParams() ||
FTy->getParamType(i) == Args[i]->getType()) &&
"Calling...