On Mon, Jun 10, 2013 at 02:29:25PM +0000, Joseph S. Myers wrote: > On Sat, 8 Jun 2013, Marek Polacek wrote: > > > + if (code == LSHIFT_EXPR > > + && !TYPE_UNSIGNED (TREE_TYPE (op0)) > > + && (flag_isoc99 || flag_isoc11)) > > flag_isoc11 implies flag_isoc99, you only need to check flag_isoc99 here.
Ah, sure. Thanks, Marek