summaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2002-08-02 00:50:01 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2002-08-02 00:50:01 +0000
commitbe58ed1de73566ae9b3c737a8c3fcdbcbd5930c4 (patch)
tree263948557c9985a1d6149cb869094c9e03d8b729 /gcc/df.c
parentc726878dc2805d59058b147372cada06fb9343ff (diff)
downloadgcc-be58ed1de73566ae9b3c737a8c3fcdbcbd5930c4.tar.gz
* df.c (df_insn_table_realloc): Change parameter to unsigned.
* optabs.c (expand_binop): Make variable unsigned. * simplify-rtx.c (simplify_subreg): Likewise. * unroll.c (unroll_loop): Cast to avoid signed/unsigned warnings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55960 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.c')
-rw-r--r--gcc/df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/df.c b/gcc/df.c
index ff900ab7042..a7e862d115c 100644
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -182,7 +182,7 @@ static void df_reg_table_realloc PARAMS((struct df *, int));
#if 0
static void df_def_table_realloc PARAMS((struct df *, int));
#endif
-static void df_insn_table_realloc PARAMS((struct df *, int));
+static void df_insn_table_realloc PARAMS((struct df *, unsigned int));
static void df_bitmaps_alloc PARAMS((struct df *, int));
static void df_bitmaps_free PARAMS((struct df *, int));
static void df_free PARAMS((struct df *));
@@ -299,7 +299,7 @@ static inline bool read_modify_subreg_p PARAMS ((rtx));
static void
df_insn_table_realloc (df, size)
struct df *df;
- int size;
+ unsigned int size;
{
size++;
if (size <= df->insn_size)