Displaying 1 result from an estimated 1 matches for "1004679".
Did you mean:
1004677
2009 Jun 29
4
[LLVMdev] Limitations of Alias Analysis?
Hi, all
According to the document "LLVM Alias Analysis Infrastructure", I
evaluated the AA performance by using the paramenters '-basicaa -ds-aa
-anders-aa'. The source code 'test.c' is listed as follow:
//------------=== Source code ===------------//
#include<stdlib.h>
typedef struct
{
int x;
int y;
} Location;
Location* getNewLocation(int x, int y)
{