Commit 9a6ac4b0 by H.J. Lu Committed by Jeff Law

i386.c (output_int_conditional_move): Use "enum rtx_code" for code type.

        * i386.c (output_int_conditional_move): Use "enum rtx_code" for code
        type.

From-SVN: r26098
parent a32126ad
Thu Apr 1 03:48:34 1999 H.J. Lu (hjl@gnu.org)
* i386.c (output_int_conditional_move): Use "enum rtx_code" for code
type.
* i386.c (notice_update_cc): No need to check the INT mode for
conditional moves since FLOAT conditional moves don't affect cc0.
......
......@@ -5515,7 +5515,7 @@ output_int_conditional_move (which_alternative, operands)
int which_alternative;
rtx operands[];
{
int code = GET_CODE (operands[1]);
enum rtx_code code = GET_CODE (operands[1]);
/* This is very tricky. We have to do it right. For a code segement
like:
......
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