Displaying 1 result from an estimated 1 matches for "lpf1".
Did you mean:
lpf
2009 Oct 02
1
[LLVMdev] alias analysis and functions
...("pointed_to_function0\n");
return 1;
}
int pointed_to_function1() {
pf01 = pointed_to_function1;
printf("pointed_to_function1\n");
return 1;
}
void ptr_function_caller(PF pf) {
printf("ptr_function_caller\n");
pf();
PF lpf0 = pointed_to_function0;
PF lpf1 = pointed_to_function1;
}
int main(int argc, char* argv[]) {
ptr_function_caller(pointed_to_function0);
return 0;
}
-------------
After
llvmgcc -emit-llvm try_calls_aliases.c -c -o try_calls_aliases.bc
opt 2>&1 -anders-aa -aa-eval -print-no-aliases -print-may-aliases -print-mus...