Displaying 2 results from an estimated 2 matches for "0be8296b".
2017 Aug 16
2
unable to emit vectorized code in LLVM IR
Hello,
I have written the following code. when i try to vectorize it through opt.
i am not getting vectorized instructions.
#include <stdio.h>
#include<stdlib.h>
int main(int argc, char** argv) {
int sum=0; int a=atoi(argv[1]); int b=atoi(argv[2]);
for (int i=0;i<1000;i++)
{
sum+=a+b;
}
printf("sum: %d\n", sum);
return 0;
}
i use following commands:
clang -S -emit-llvm
2017 Aug 17
3
unable to emit vectorized code in LLVM IR
...LLVM Developers mailing list
>> llvm-dev at lists.llvm.org
>> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170817/0be8296b/attachment.html>