OSDN Git Service

*** empty log message ***
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 28 Dec 1991 23:16:05 +0000 (23:16 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 28 Dec 1991 23:16:05 +0000 (23:16 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/rtl.c

index e623f63..71961d0 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;
       }