Displaying 1 result from an estimated 1 matches for "2d3e0ddb".
2018 May 22
1
CFLAndersAliasAnalysis print implementation
Hello all,
I'm having trouble getting this analysis to print out it's graph of
aliases. I am processing an example C file into llvm ir, like this:
int main(void) {
int x=1, y=2, z=3;
int *p;
int **p1, **p2;
if (x==z) { //0x100000f40
p=&x;
p1=&p;
x*=2;
*p1+=z;
}
}
clang -S -emit-llvm example.c -o example.ll
Then, I am trying to run the Andersen alias