Displaying 1 result from an estimated 1 matches for "1015190".
Did you mean:
101190
2011 Mar 29
3
[LLVMdev] IR in SSA form?
Hi All,
When I run the following command
llvm-gcc -03 -emit-llvm test.cpp -c -o test.bc or llvm-gcc -emit-llvm
test.cpp -c -o test.bc
on the program test.cpp, the IR representation is not in SSA form.
I do not see any phi functions.
program: test.cpp
int main(int argc, char **argv)
{
int a[2],i,j;
for(i=0;i<2;i++)
{
a[i] = i;
}
return a[1];
}
Any clarifications will be