Hi All,<div> When I run the following command </div><div>llvm-gcc -03 -emit-llvm test.cpp -c -o test.bc or llvm-gcc -emit-llvm test.cpp -c -o test.bc</div><div><br></div><div>on the program test.cpp, the IR representation is not in SSA form. </div>
<div>I do not see any phi functions. </div><div><br></div><div>program: test.cpp</div><div><div>int main(int argc, char **argv)</div><div>{</div><div> int a[2],i,j;</div><div> for(i=0;i<2;i++)</div><div> {</div><div>
a[i] = i;</div><div> }</div><div> return a[1];</div><div>}</div></div><div><br></div><div>Any clarifications will be greatly appreciated. Thanks.</div><div><br></div><div>George</div>