Displaying 1 result from an estimated 1 matches for "indvar2".
Did you mean:
indvars
2011 May 22
10
[LLVMdev] No SSE instructions
Hello.
I have compiled the simple program:
#include <stdio.h>
#include <stdlib.h>
int v1[10000];
int main()
{
int i;
for (i = 0; i < 10000; i++) {
v1[i] = i;
}
for (i = 0; i < 10000; i++) {
printf("%d ", v1[i]);
}
return 0;
}
Next, I disasseble the executable file and have not found