http://llvm.org/bugs/show_bug.cgi?id=2643

           Summary: bitfield initialization triggers assertion
           Product: clang
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: LLVM Codegen
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
                CC: [email protected]


The following code triggers an assertion in clang (with --emit-llvm):

typedef struct _phar_entry_info {
        int is_modified:1;
        int is_deleted:1;
} phar_entry_info;

void phar_mount_entry() {
        phar_entry_info entry = {0};
}


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- 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