diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-07 13:47:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-07 13:47:37 +0000 |
commit | fa8718d79986441d176217e893f759b876a69bce (patch) | |
tree | d227e0d9d39a19f804fc1ec5cc7e79d62ebf7b00 /gcc/flow.c | |
parent | 0405cc0e8d137d6e30eb48cfab5833bafff22393 (diff) | |
download | gcc-fa8718d79986441d176217e893f759b876a69bce.zip gcc-fa8718d79986441d176217e893f759b876a69bce.tar.gz gcc-fa8718d79986441d176217e893f759b876a69bce.tar.bz2 |
flow.c (regs_live_at_setjmp): Make it static.
* flow.c (regs_live_at_setjmp): Make it static.
* flow.h: Remove the corresponding prototype.
From-SVN: r96013
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |