diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-02 00:50:01 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-02 00:50:01 +0000 |
commit | be58ed1de73566ae9b3c737a8c3fcdbcbd5930c4 (patch) | |
tree | 263948557c9985a1d6149cb869094c9e03d8b729 /gcc/simplify-rtx.c | |
parent | c726878dc2805d59058b147372cada06fb9343ff (diff) | |
download | gcc-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/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 0565dcd32b8..135846ca82f 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2280,7 +2280,7 @@ simplify_subreg (outermode, op, innermode, byte) if (GET_CODE (op) == CONST_VECTOR) { int elt_size = GET_MODE_SIZE (GET_MODE_INNER (innermode)); - int offset = byte / elt_size; + const unsigned int offset = byte / elt_size; rtx elt; if (GET_MODE_INNER (innermode) == outermode) |