search for: 1015211

Displaying 1 result from an estimated 1 matches for "1015211".

Did you mean: 1005211
2011 Mar 30
2
[LLVMdev] Counting pointers to functions
Hi all, I'm trying to write an LLVM pass which would determine whether there is any pointer which ever points to a function. I couldn't figure out if there is any existing pass which does something of the kind (maybe some analysis pass which I'm not aware of?). Of course, I could just iterate over all values, and check whether they point to functions (as in a similar recent post).