search for: getintptr32ti

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

Did you mean: getintptr32ty
2013 Sep 20
0
[LLVMdev] Passing Arguments to External Function Call in llvm pass
I have a external function which is like this :- void foo(int num, ...) { va_list arguments; va_start(arguments,num); for(int x=0;x<num;x++) { long long *oprnd=va_arg ( arguments, long long* ); } va_end ( arguments ); } And on llvm pass i have one vector of Value* (i.e. vector&lt;Value*> vect). which basically contains getoperand(0) of all Load