diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 13:47:37 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 13:47:37 +0000 |
commit | aa491715d81c2029bef043c8da578b67cc11ace2 (patch) | |
tree | d227e0d9d39a19f804fc1ec5cc7e79d62ebf7b00 /gcc | |
parent | fbbbfe26e729cd98f6d787b1b0e9153276ed088d (diff) | |
download | gcc-aa491715d81c2029bef043c8da578b67cc11ace2.tar.gz |
* flow.c (regs_live_at_setjmp): Make it static.
* flow.h: Remove the corresponding prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96013 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/basic-block.h | 4 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e5833947362..7345b4e671a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -5,6 +5,9 @@ * calls (stack_arg_under_construction): Make it static. + * flow.c (regs_live_at_setjmp): Make it static. + * flow.h: Remove the corresponding prototype. + 2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com> * config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv. diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 92334a39e84..fb69f350297 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -397,10 +397,6 @@ extern GTY(()) varray_type basic_block_info; #define FOR_ALL_BB(BB) \ for (BB = ENTRY_BLOCK_PTR; BB; BB = BB->next_bb) -/* What registers are live at the setjmp call. */ - -extern regset regs_live_at_setjmp; - /* Special labels found during CFG build. */ extern GTY(()) rtx label_value_list; diff --git a/gcc/flow.c b/gcc/flow.c index d3850cc9618..e60feb83c12 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -184,7 +184,7 @@ varray_type reg_n_info; /* Regset of regs live when calls to `setjmp'-like functions happen. */ /* ??? Does this exist only for the setjmp-clobbered warning message? */ -regset regs_live_at_setjmp; +static regset regs_live_at_setjmp; /* List made of EXPR_LIST rtx's which gives pairs of pseudo registers that have to go in the same hard reg. |