From b6cd4666bcb804d0adaabe9037a59cb373e33885 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Sat, 28 Dec 1991 15:16:05 -0800 Subject: [PATCH] *** empty log message *** From-SVN: r146 --- gcc/rtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/rtl.c b/gcc/rtl.c index e623f63d0db..71961d0d1f7 100644 --- 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; } -- 2.30.2