Displaying 3 results from an estimated 3 matches for "3b149eef".
2018 Apr 16
1
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/3b149eef/attachment.html>
2018 Apr 16
0
LLVM Alias Analysis (Load and store from same address is not showed up in same set)
On 4/15/2018 11:44 AM, Mustakimur Khandaker via llvm-dev wrote:
> 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){
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