[llvm-bugs] [Bug 30886] New: extra swaps generated for simple vectorized loop
via llvm-bugs
llvm-bugs at lists.llvm.org
Wed Nov 2 07:15:32 PDT 2016
https://llvm.org/bugs/show_bug.cgi?id=30886
Bug ID: 30886
Summary: extra swaps generated for simple vectorized loop
Product: libraries
Version: trunk
Hardware: PC
OS: Windows NT
Status: NEW
Severity: normal
Priority: P
Component: Backend: PowerPC
Assignee: unassignedbugs at nondot.org
Reporter: amehsan at ca.ibm.com
CC: llvm-bugs at lists.llvm.org
Classification: Unclassified
the loop in question is this:
void test (float *__restrict__ a, float *__restrict__ b, int n, float c)
{
for (int i = 0; i < n; ++i) {
b[i] = c * a[i];
}
}
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20161102/9c67a608/attachment.html>
More information about the llvm-bugs
mailing list