diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2015-09-10 19:19:27 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2015-09-10 12:19:27 -0700 |
commit | 2eba0ed5f6359cd0fe3e71536860a14617b64360 (patch) | |
tree | 6ec24f5d0e60cdf1f6437efebc5aa82e72f44111 /gcc/shrink-wrap.c | |
parent | 4711983f43bd4f40e5b58f288afcd3ad844e241b (diff) | |
download | gcc-2eba0ed5f6359cd0fe3e71536860a14617b64360.zip gcc-2eba0ed5f6359cd0fe3e71536860a14617b64360.tar.gz gcc-2eba0ed5f6359cd0fe3e71536860a14617b64360.tar.bz2 |
Put back requires_stack_frame_p used by i386.c
* shrink-wrap.c (requires_stack_frame_p): Remove static.
* shrink-wrap.h (requires_stack_frame_p): Put back.
From-SVN: r227659
Diffstat (limited to 'gcc/shrink-wrap.c')
-rw-r--r-- | gcc/shrink-wrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/shrink-wrap.c b/gcc/shrink-wrap.c index 0ece4cf..d10795a 100644 --- a/gcc/shrink-wrap.c +++ b/gcc/shrink-wrap.c @@ -68,7 +68,7 @@ along with GCC; see the file COPYING3. If not see PROLOGUE_USED contains the hard registers used in the function prologue. SET_UP_BY_PROLOGUE is the set of registers we expect the prologue to set up for the function. */ -static bool +bool requires_stack_frame_p (rtx_insn *insn, HARD_REG_SET prologue_used, HARD_REG_SET set_up_by_prologue) { |