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: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to