Issue 58162
Summary Get variable names from the llvm code
Labels new issue
Assignees
Reporter tareq97
    Hi,

I would like to know if I can get variable names of the source code in llvm pass Would also like to know how llvm pass is storing the variable name information while executing the llvm bitcode symbolically.


For example : From the below C code I want to get the buffer variable name is it possible or not.


int main(int argc, char *argv[])
{
       char *buffer = malloc(5);
       buffer[6] = 'a';
       return 0;
}

_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to