> +///
> +///   struct S {
> +///     char a, b, c;
> +///     unsigned bits : 3;
> +///     unsigned more_bits : 4;
> +///     unsigned still_more_bits : 7;
> +///   };
> +///
> +/// This will end up as the following LLVM type. The first array is the
> +/// bitfield, and the second is the padding out to a 4-byte alignmnet.
> +///
> +///   %t = type { i8, i8, i8, i8, i8, [3 x i8] }

What second array?
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to