Displaying 2 results from an estimated 2 matches for "596014d7".
2011 May 22
1
[LLVMdev] No SSE instructions
...an autovectorizer.
>
> -Chris
>
Could you tell me please are you going to implement autovecorizer in LLVM in
nearby future?
--
Serg Anohovsky
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110522/596014d7/attachment.html>
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