https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114285
--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> --- >Rust will sometimes copy uninitialized memory and I'd like to avoid disabling >this specific warning. Note in C, there are specific rules about copying unitialized memory. Most is it is undefined. It is kinda of odd a "security" language like Rust allows copying unitialized memory at all since a copy should be considered an use ...