aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-08-02 00:50:01 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-08-02 00:50:01 +0000
commita4b5414c883ff448abe86c07b5cd83e59793d32f (patch)
tree263948557c9985a1d6149cb869094c9e03d8b729 /gcc/df.c
parenta03e67c3a3cb59fa73878624ad9565e4fed4c6ca (diff)
downloadgcc-a4b5414c883ff448abe86c07b5cd83e59793d32f.zip
gcc-a4b5414c883ff448abe86c07b5cd83e59793d32f.tar.gz
gcc-a4b5414c883ff448abe86c07b5cd83e59793d32f.tar.bz2
df.c (df_insn_table_realloc): Change parameter to unsigned.
* 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. From-SVN: r55960
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 ff900ab..a7e862d 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)