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

Alexander Cherepanov <ch3root at openwall dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ch3root at openwall dot com

--- Comment #13 from Alexander Cherepanov <ch3root at openwall dot com> ---
This bug could be reproduced with gcc 7.0.0 20160424 on x86-64 with this
example:

int main()
{
  volatile struct {
    char s[8193]; // gcc
    //char s[129]; // clang
  } s = {""};

  s = s;
}

Reply via email to