]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/shrink-wrap.h
Fortran: fix issues with class(*) assignment [PR114827]
[thirdparty/gcc.git] / gcc / shrink-wrap.h
CommitLineData
e974b93b 1/* Shrink-wrapping related functions.
a945c346 2 Copyright (C) 1989-2024 Free Software Foundation, Inc.
f30e25a3
ZC
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_SHRINK_WRAP_H
21#define GCC_SHRINK_WRAP_H
22
83685514 23#include "function.h"
f30e25a3 24
e53b6e56 25/* In shrink-wrap.cc. */
2eba0ed5 26extern bool requires_stack_frame_p (rtx_insn *, HARD_REG_SET, HARD_REG_SET);
33fec8d5 27extern void try_shrink_wrapping (edge *entry_edge, rtx_insn *prologue_seq);
c997869f 28extern void try_shrink_wrapping_separate (basic_block first_bb);
66d89a43 29extern bool use_shrink_wrapping_separate (void);
4bccb39e
RS
30#define SHRINK_WRAPPING_ENABLED \
31 (flag_shrink_wrap && targetm.have_simple_return ())
f30e25a3
ZC
32
33#endif /* GCC_SHRINK_WRAP_H */
34
35