diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1991-12-28 15:16:05 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1991-12-28 15:16:05 -0800 |
commit | b6cd4666bcb804d0adaabe9037a59cb373e33885 (patch) | |
tree | 70557db44c6978016a205dddad34e4bc70e025ea /gcc/rtl.c | |
parent | e06892563cc873e361b36ca343e3e3d1710fccbb (diff) | |
download | gcc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |