search for: 1d5e2c70

Displaying 2 results from an estimated 2 matches for "1d5e2c70".

2011 May 22
1
[LLVMdev] Fwd: No SSE instructions
.... The questions were not about this specific example. I wont to understand, what vector optimizations LLVM have? How well implemented this theme in LLVM? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110522/1d5e2c70/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