diff options
author | H.J. Lu <hjl@gnu.org> | 1999-04-01 02:56:31 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-31 19:56:31 -0700 |
commit | 9a6ac4b0c286968d9a74833e200cdb27760f5658 (patch) | |
tree | e6709a0997c69df0e79812ff722e9e74de22dec4 | |
parent | a32126ad0457f7e754ff7ef7fc2cbd18a6331dae (diff) | |
download | gcc-9a6ac4b0c286968d9a74833e200cdb27760f5658.zip gcc-9a6ac4b0c286968d9a74833e200cdb27760f5658.tar.gz gcc-9a6ac4b0c286968d9a74833e200cdb27760f5658.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1081725..237c5ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index aa2ffda..323838e 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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: |