Commit eb2ab511 by Richard Henderson Committed by Richard Henderson

combine.c (make_field_assignment): Fix argument order to gen_int_mode.

        * combine.c (make_field_assignment): Fix argument order
        to gen_int_mode.

From-SVN: r94420
parent c2542a82
2005-01-29 Richard Henderson <rth@redhat.com>
* combine.c (make_field_assignment): Fix argument order
to gen_int_mode.
2005-01-29 Richard Guenther <richard.guenther@uni-tuebingen.de>
PR tree-optimization/15791
......
......@@ -7871,7 +7871,7 @@ make_field_assignment (rtx x)
{
mode = GET_MODE (src);
src = gen_rtx_AND (mode, XEXP (src, 0),
gen_int_mode (mode, and_mask & ze_mask));
gen_int_mode (and_mask & ze_mask, mode));
return gen_rtx_SET (VOIDmode, dest, src);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment