Displaying 1 result from an estimated 1 matches for "_znssc1epkcrksaice".
2011 Dec 29
2
[LLVMdev] Taking invoke instructions' labels
Hello everybody,
I am writing a pass, that does something on strings. It's a long story, so
I will write shortly.
If I have an iterator on invoke instruction, how can I take its label
parameters?
For example,
invoke void @_ZNSsC1EPKcRKSaIcE(%"class.std::basic_string"* %str, i8*
getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0),
%"class.std::allocator"* %2)
to label %7 unwind label %20
Here I am trying to get the *label %7* and *label %20*. Is that possible?
We have tried just to increment our iterat...