Displaying 2 results from an estimated 2 matches for "f243179c".
2018 Apr 16
0
LLVM Alias Analysis (Load and store from same address is not showed up in same set)
...Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180416/f243179c/attachment.html>
2018 Apr 15
2
LLVM Alias Analysis (Load and store from same address is not showed up in same set)
Hi
I have this simple c code for which I would like to use for alias analysis.
#include <stdio.h>
#include <stdlib.h>
static int (*fp) (void);
void ind_call (int (*compr)(void)){
fp = compr;
fp();
}
int hello(void){
return printf("hello world\n");
}
int main(){
ind_call(hello);
return 0;
}
So, I do the following:
bin/opt -basicaa