Commit 08012cda by Richard Henderson Committed by Richard Henderson

ia64.c (ia64_print_operand): Fix typos.

        * config/ia64/ia64.c (ia64_print_operand): Fix typos.
        Sign extend mode size before negating.

From-SVN: r35324
parent 4f4caf92
2000-07-28 Richard Henderson <rth@cygnus.com>
* config/ia64/ia64.c (ia64_print_operand): Fix typos.
Sign extend mode size before negating.
2000-07-28 Richard Henderson <rth@cygnus.com>
* emit-rtl.c (gen_lowpart_common): Add missing 'c' variable.
2000-07-28 Bernd Schmidt <bernds@cygnus.co.uk>
......
......@@ -1998,10 +1998,10 @@ ia64_print_operand (file, x, code)
case POST_MODIFY:
x = XEXP (XEXP (XEXP (x, 0), 1), 1);
if (GET_CODE (x) == CONST_INT)
value = INTVAL (y);
value = INTVAL (x);
else if (GET_CODE (x) == REG)
{
fprintf (file, ", %s", reg_names[REGNO (y)]);
fprintf (file, ", %s", reg_names[REGNO (x)]);
return;
}
else
......@@ -2020,7 +2020,7 @@ ia64_print_operand (file, x, code)
break;
case POST_DEC:
value = - GET_MODE_SIZE (GET_MODE (x));
value = - (HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (x));
if (value == -12)
value = -16;
break;
......
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