Getting actual value of local variables in llvm

Viewed 1162

If I have this example:

int a=0, b=0;

a and b are local variables and make any modifications in their values, such as:

a++;
b++;

I need to get the value in this line code during running MCJIT.

I mean by value not Value class, but the actual integer or any type value.

2 Answers
Related