Displaying 3 results from an estimated 3 matches for "95e409ed".
2018 Jan 15
0
Source level code transformation V.S. IR-level code transformation
2018-01-15 9:36 GMT+08:00 Linchuan Chen via llvm-dev <
llvm-dev at lists.llvm.org>:
> Dear all,
> I'm working on a simple code transformation problem that can be
> described as below:
>
> for a C++ loop:
>
> *for (int i = 0; i < N; ++i) {*
> * a = M[i] + b;*
> * }*
>
> I want to transform it to:
>
> *int A[4]; *
2018 Jan 15
1
Source level code transformation V.S. IR-level code transformation
...t; LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
--
Sincerely,
Linchuan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180115/95e409ed/attachment.html>
2018 Jan 15
3
Source level code transformation V.S. IR-level code transformation
Dear all,
I'm working on a simple code transformation problem that can be
described as below:
for a C++ loop:
*for (int i = 0; i < N; ++i) {*
* a = M[i] + b;*
* }*
I want to transform it to:
*int A[4]; *
* for (int i = 0; i < N; ++i) {*
* A[0] = M[i] + b;*
* A[1] = M[i] + b;*
* A[2] = M[i] + b;*
* A[3] = M[i] + b;*
*