(make_compound_operation, case ASHIFTRT): Fix typo.

Was using C1 where C2 is needed.

From-SVN: r4586
This commit is contained in:
Richard Stallman 1993-05-28 22:48:32 +00:00
parent 4908e50870
commit 239db5fcdd
1 changed files with 1 additions and 1 deletions

View File

@ -5217,7 +5217,7 @@ make_compound_operation (x, in_code)
gen_binary (GET_CODE (XEXP (x, 0)), mode, new,
GEN_INT (newop1)),
INTVAL (c2) - INTVAL (c1),
NULL_RTX, mode_width - INTVAL (c1),
NULL_RTX, mode_width - INTVAL (c2),
code == LSHIFTRT, 0, in_code == COMPARE);
}