------- Comment #5 from pinskia at gcc dot gnu dot org 2005-10-28 18:18 ------- Last but not least is: int f(int i) { if (i < 0) return i/10; return i/10; }
int f2(int i) { return i/10; } Which is converted at the rtl level but not at the tree level (I think there is a bug about this already). -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24568