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

Bill Wendling <isanb...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
                 CC|                            |isanb...@gmail.com
             Status|NEW                         |RESOLVED

--- Comment #4 from Bill Wendling <isanb...@gmail.com> ---
This appears to be done. This snippet compiles without error:

unsigned int shash_align_buffer_size(unsigned len, unsigned long mask)
{
        typedef unsigned short __attribute__ ((aligned)) u8_aligned;
        return len + (mask & ~(__alignof__(u8_aligned) - 1));
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to