http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60505
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Why would out[num] = ovec[num/2]; imply num < 16? The loop implies num <= 16, and out[num] = ovec[num/2]; just implies num >= 0 && num <= 31.