Displaying 1 result from an estimated 1 matches for "nparamtyp".
Did you mean:
nparamtype
2012 Jul 26
1
[LLVMdev] Calling a function with bad signature, possible bug.
...function with a bad signature!");
I tried to get a dump of FTy->getParamType(i) and Args[i]->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"...