diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1991-12-28 23:16:05 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1991-12-28 23:16:05 +0000 |
commit | 9854772376d1067d7d95add43b9528e7a34a4948 (patch) | |
tree | 70557db44c6978016a205dddad34e4bc70e025ea /gcc/rtl.c | |
parent | a698628e559a5969519327f607e225de08a53c8e (diff) | |
download | gcc-9854772376d1067d7d95add43b9528e7a34a4948.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |