[LLVMbugs] [Bug 7991] New: [ms-extensions-undocumented] Flexible array members in union

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Wed Aug 25 12:57:27 PDT 2010


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

           Summary: [ms-extensions-undocumented] Flexible array members in
                    union
           Product: clang
           Version: trunk
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
        AssignedTo: unassignedclangbugs at nondot.org
        ReportedBy: bigcheesegs at gmail.com
                CC: llvmbugs at cs.uiuc.edu


Here's an example from the Windows SDK.

typedef struct _PROPERTYINSTEX
{
  WORD Length;
  union
  {
    BYTE Byte[];
    WORD Word[];
    DWORD Dword[];
    LARGE_INTEGER LargeInt[];
    SYSTEMTIME SysTime[];
    TYPED_STRING TypedString;
  };
} PROPERTYINSTEX;

-- 
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.



More information about the llvm-bugs mailing list