------- Comment #2 from pinskia at gcc dot gnu dot org 2006-05-29 04:31 ------- This also can be reproduced on x86_64: void binarize (int npixels, unsigned char *b) { int i; for (i = 0; i < npixels; i++) b[i] = (b[i] > 225 ? 0xff : 0); }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27790