I am trying to look at the arguments that are passed to a function pointer. I have an SSA_NAME which is for a pointer-type to a function-type. I want to obtain the arguments being passed to the function pointer, but after looking all over the SSA_NAME node and its corresponding VAR_DECL I cannot seem to find the arguments stashed anywhere. I know this is somewhat of a special case. Typically, if I had a fndecl it would be easy, but all I know in my case is the function type.
-Matt