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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
                 CC|                            |pinskia at gcc dot gnu.org
   Target Milestone|---                         |11.3

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed, another simplier testcase:
void use(unsigned char*);

void g() {
    unsigned char t2[216];
    __builtin_memset(t2, 0, sizeof(t2));
    use(t2);
}

Reply via email to