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/output.h | |
parent | aa97fdf377270a635649c439139c86240cbc396b (diff) | |
download | gcc-e817125dbbc96845ced07f54f93df2d757d0398f.zip gcc-e817125dbbc96845ced07f54f93df2d757d0398f.tar.gz gcc-e817125dbbc96845ced07f54f93df2d757d0398f.tar.bz2 |
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/output.h')
-rw-r--r-- | gcc/output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h index fee817e..d733fce 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -141,7 +141,7 @@ extern int add_weak PARAMS ((const char *, const char *)); /* Functions in flow.c */ extern void allocate_for_life_analysis PARAMS ((void)); -extern int regno_uninitialized PARAMS ((int)); +extern int regno_uninitialized PARAMS ((unsigned int)); extern int regno_clobbered_at_setjmp PARAMS ((int)); extern void find_basic_blocks PARAMS ((rtx, int, FILE *)); extern bool cleanup_cfg PARAMS ((int)); |