Displaying 1 result from an estimated 1 matches for "anynoe".
Did you mean:
anynone
2013 Jan 31
0
[LLVMdev] Unrolling a loop with unknown upper bound
...(i = 0; i < (n % 2); i++)
{
y[i] = i;
}
for ( ; i + 1 < n; i += 2) /* no initializer */
{
y[i] = i;
y[i+1] = i+1;
}
I have read these llvm documents, but still not very clear where to start.
I think it could be done by writing a pass. But, I still confused.
Does there anynoe who can give me any advice.
Any information will be appreciated.
Thank you in avance!