From: Stan Shebs Date: Tue, 14 Mar 2000 08:24:21 +0000 (+0000) Subject: c-typeck.c (c_alignof): Error on incomplete types. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9d27bffe6db1773316c444e5cf1de5fa3a698dc5;p=gcc.git c-typeck.c (c_alignof): Error on incomplete types. * c-typeck.c (c_alignof): Error on incomplete types. * extend.texi (Alignment): Document this. From-SVN: r32522 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2559e36c5f4..74499929f3d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-03-14 Stan Shebs + + * c-typeck.c (c_alignof): Error on incomplete types. + * extend.texi (Alignment): Document this. + 2000-03-13 Zack Weinberg * cppfiles.c: Include mkdeps.h. diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 2cac8875ca5..886e07102f6 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -781,6 +781,12 @@ c_alignof (type) if (code == VOID_TYPE || code == ERROR_MARK) return size_one_node; + if (TYPE_SIZE (type) == 0) + { + error ("__alignof__ applied to an incomplete type"); + return size_zero_node; + } + return size_int (TYPE_ALIGN (type) / BITS_PER_UNIT); } diff --git a/gcc/extend.texi b/gcc/extend.texi index fa13154d7fe..475241aadde 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -1879,6 +1879,8 @@ the value of @code{__alignof__ (foo1.y)} is probably 2 or 4, the same as @code{__alignof__ (int)}, even though the data type of @code{foo1.y} does not itself demand any alignment.@refill +It is an error to ask for the alignment of an incomplete type. + A related feature which lets you specify the alignment of an object is @code{__attribute__ ((aligned (@var{alignment})))}; see the following section.