I've read many posts here and on other sites, but still didn't get clear answer.
Let's say I have instruction and I can print it out by
errs() << inst << "\n";
and I got:
%9 = add nsw i32 %7, %8
I want to get variables names behind %9, %7, %8.
Is it possible? and if it is, how?
Thank you :)