[LLVMbugs] [Bug 23380] New: Loop vectorizer crash

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Thu Apr 30 02:10:13 PDT 2015


https://llvm.org/bugs/show_bug.cgi?id=23380

            Bug ID: 23380
           Summary: Loop vectorizer crash
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: LLVM Codegen
          Assignee: unassignedclangbugs at nondot.org
          Reporter: chfast at gmail.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

This code crashes clang 3.7:

void test(unsigned* out)
{
    #pragma clang loop vectorize(enable)
    for (unsigned i = 0; i != 256; ++i)
    {
        for (unsigned w = 0; w != 16; ++w)
            ++out[w];
    }
}

-- 
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/20150430/65a3f567/attachment.html>


More information about the llvm-bugs mailing list