search for: 43bb8ab8

Displaying 2 results from an estimated 2 matches for "43bb8ab8".

2015 Aug 22
2
loop unrolling introduces conditional branch
...service like pastebin :) > > You don’t have defined the DataLayout in the API cases, it should help to > do so. > > — > Mehdi > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150822/43bb8ab8/attachment-0001.html>
2015 Aug 22
3
loop unrolling introduces conditional branch
Hi, Mehdi, For example, I have this very simple source code: void foo( int n, int array_x[]) { for (int i=0; i < n; i++) array_x[i] = i; } After I use "clang -emit-llvm -o bc_from_clang.bc -c try.cc", I get bc_from_clang.bc. With my code (using LLVM IRbuilder API), I get bc_from_api.bc. Attachment please find thse two files. I also past the IR here.