------- Additional Comments From trt at acm dot org 2005-08-01 16:48 ------- Thanks! I did a grep of the gcc sources:
find . -name '*.c' -print | xargs grep '^[ ]*\*[a-zA-Z_]*++;' and found 3 harmless cases of *p++ (* superfluous, sizeof(*p)==1), but also: ./libobjc/gc.c: *current++; I'm fairly sure that (*current)++; was intended. I'm not familiar with objective C, does it share warning messages with C? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23113