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
This commit is contained in:
parent
a32126ad04
commit
9a6ac4b0c2
@ -1,5 +1,8 @@
|
||||
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:
|
||||
|
Loading…
Reference in New Issue
Block a user