Hello.<div>I have compiled the simple program:</div><div><br></div><div><div>#include <stdio.h></div><div>#include <stdlib.h></div><div><br></div><div>int v1[10000];</div><div><br></div><div>int main()</div><div>
{</div><div> int i;</div><div><br></div><div> for (i = 0; i < 10000; i++) {</div><div> v1[i] = i;</div><div> }</div><div><br></div><div> for (i = 0; i < 10000; i++) {</div>
<div> printf("%d ", v1[i]);</div><div> }</div><div><br></div><div> return 0;</div><div>}</div></div><div><br></div><div>Next, I disasseble the executable file and have not found any SSE instructions.</div>
<div>I know that LLVM support SSE.</div><div>So my questions:</div><div> 1. It is occur only in my computer?</div><div> 2. If it is not only my bug, then there are not SSE optimizations in LLVM? </div><div> 3. Have anyone, already worked on this problem? </div>
<div><br></div><div>--</div><div>Serg Anohovsky.</div>