https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69780

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Another ICE:
void bar (int i)
{
  void *p = __builtin_alloca_with_align (1, i);
}
I bet __builtin_alloca_with_align has never been meant to be used publicly, and
requires that the second argument is integer constant (and is in bits, thus
also needs to be a multiple of __CHAR_BITS__).
I think the right fix is to require this, e.g. during
__builtin_alloca_with_align expansion - and error out if it doesn't satisfy
this.

Reply via email to