aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1991-12-28 15:16:05 -0800
committerJim Wilson <wilson@gcc.gnu.org>1991-12-28 15:16:05 -0800
commitb6cd4666bcb804d0adaabe9037a59cb373e33885 (patch)
tree70557db44c6978016a205dddad34e4bc70e025ea /gcc/rtl.c
parente06892563cc873e361b36ca343e3e3d1710fccbb (diff)
downloadgcc-b6cd4666bcb804d0adaabe9037a59cb373e33885.zip
gcc-b6cd4666bcb804d0adaabe9037a59cb373e33885.tar.gz
gcc-b6cd4666bcb804d0adaabe9037a59cb373e33885.tar.bz2
*** empty log message ***
From-SVN: r146
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index e623f63..71961d0 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;
}