*** empty log message ***
authorJim Wilson <wilson@gcc.gnu.org>
Sat, 28 Dec 1991 23:16:05 +0000 (15:16 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Sat, 28 Dec 1991 23:16:05 +0000 (15:16 -0800)
From-SVN: r146

gcc/rtl.c

index e623f63d0db07269c8d4a4371a8b88a5e5ca7bfe..71961d0d1f7d87fc507068e7433c4f1911a835cf 100644 (file)
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -397,7 +397,7 @@ add_dependence (insn, elem, dep_type)
       {
        /* If this is a more restrictive type of dependence than the existing
           one, then change the existing dependence to this type.  */
-       if (dep_type < REG_NOTE_KIND (link))
+       if ((int) dep_type < (int) REG_NOTE_KIND (link))
          PUT_REG_NOTE_KIND (link, dep_type);
        return;
       }