Commit 6ba17bb0 by Richard Stallman

(make_extraction): Fix paren error in `if' for INNER is reg.

From-SVN: r2652
parent a813fadf
......@@ -4632,10 +4632,10 @@ make_extraction (mode, inner, pos, pos_rtx, len,
a SUBREG and it would sometimes return a new hard register. */
new = gen_rtx (SUBREG, tmode, inner,
(WORDS_BIG_ENDIAN
&& GET_MODE_SIZE (is_mode) > UNITS_PER_WORD)
? ((GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (tmode)
/ UNITS_PER_WORD))
: 0);
&& GET_MODE_SIZE (is_mode) > UNITS_PER_WORD
? ((GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (tmode))
/ UNITS_PER_WORD)
: 0));
else
new = force_to_mode (inner, tmode, len, NULL_RTX);
......
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