> I pushed this and also my buffer size work. Thank you. A new bug report is comming. strangely corrent code doesn't handle prefix style attribute. see below. ---------------------------------------------- extern __attribute__ ((__noreturn__)) void my_exit(const char*, ...); //extern void my_exit(const char*, ...) __attribute__ ((__noreturn__)); double ng(int base) { static const double table[] = { 2.0, 4.0 }; if (base < 1) { my_exit(1); } if (base > 2) { my_exit(1); } return table[base -1]; } -- To unsubscribe from this list: send the line "unsubscribe smatch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html