diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-12 01:53:44 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-12 01:53:44 +0000 |
commit | 03030d4d47c2a9a6f0f3ff8e89025e195879462e (patch) | |
tree | 32ad3e745eda186ee14596f8cb1db079973c7a21 /gcc/output.h | |
parent | e4077beb35275f4935a6760d36d898205934f014 (diff) | |
download | gcc-03030d4d47c2a9a6f0f3ff8e89025e195879462e.tar.gz |
2001-12-11 Aldy Hernandez <aldyh@redhat.com>
* output.h (regno_uninitialized): Make argument unsigned.
* flow.c (regno_uninitialized): Make regno unsigned.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47910 138bc75d-0d04-0410-961f-82ee72b054a4
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 fee817e53b5..d733fce0bf1 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)); |