Displaying 1 result from an estimated 1 matches for "ngettype".
Did you mean:
gettype
2012 Jul 26
1
[LLVMdev] Calling a function with bad signature, possible bug.
...t;getType(), but I wasn't able to do it in gdb - everytime I create a breakpoint it just misses it. So I made the following:
FTy->getParamType(i)->dump();
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())...