diff options
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r-- | gcc/cfgloop.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index d9c7584..e3ac448 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -19,6 +19,13 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef GCC_CFGLOOP_H +#define GCC_CFGLOOP_H + +#include "basic-block.h" +/* For rtx_code. */ +#include "rtl.h" + /* Structure to hold decision about unrolling/peeling. */ enum lpt_dec { @@ -420,3 +427,5 @@ enum extern void unroll_and_peel_loops (struct loops *, int); extern void doloop_optimize_loops (struct loops *); + +#endif /* GCC_CFGLOOP_H */ |