diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2001-12-12 01:53:44 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2001-12-12 01:53:44 +0000 |
commit | e817125dbbc96845ced07f54f93df2d757d0398f (patch) | |
tree | 32ad3e745eda186ee14596f8cb1db079973c7a21 /gcc/flow.c | |
parent | aa97fdf377270a635649c439139c86240cbc396b (diff) | |
download | gcc-e817125dbbc96845ced07f54f93df2d757d0398f.tar.gz |
output.h (regno_uninitialized): Make argument unsigned.
2001-12-11 Aldy Hernandez <aldyh@redhat.com>
* output.h (regno_uninitialized): Make argument unsigned.
* flow.c (regno_uninitialized): Make regno unsigned.
From-SVN: r47910
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index 0d9b723efa5..17f8277f4f4 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -2245,7 +2245,7 @@ libcall_dead_p (pbi, note, insn) int regno_uninitialized (regno) - int regno; + unsigned int regno; { if (n_basic_blocks == 0 || (regno < FIRST_PSEUDO_REGISTER |