From 9a6ac4b0c286968d9a74833e200cdb27760f5658 Mon Sep 17 00:00:00 2001
From: "H.J. Lu" <hjl@gnu.org>
Date: Thu, 1 Apr 1999 02:56:31 +0000
Subject: [PATCH] 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
---
 gcc/ChangeLog          | 3 +++
 gcc/config/i386/i386.c | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 10817254393c..237c5edb9503 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 aa2ffdaa4c88..323838e2bb4c 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:
-- 
GitLab