Richard Biener wrote:
> int f (int m, int c)
> {
> return (m & 1) * c;
> }This case (integer[0,1] rather than boolean input) should be transformed into c & -(m & 1). Wilco
Richard Biener wrote:
> int f (int m, int c)
> {
> return (m & 1) * c;
> }This case (integer[0,1] rather than boolean input) should be transformed into c & -(m & 1). Wilco