11debfc3dSmrg /* Common Backend requirements. 21debfc3dSmrg 3*8feb0f0bSmrg Copyright (C) 2015-2020 Free Software Foundation, Inc. 41debfc3dSmrg Contributed by Andrew MacLeod <amacleod@redhat.com> 51debfc3dSmrg 61debfc3dSmrg This file is part of GCC. 71debfc3dSmrg 81debfc3dSmrg GCC is free software; you can redistribute it and/or modify it under 91debfc3dSmrg the terms of the GNU General Public License as published by the Free 101debfc3dSmrg Software Foundation; either version 3, or (at your option) any later 111debfc3dSmrg version. 121debfc3dSmrg 131debfc3dSmrg GCC is distributed in the hope that it will be useful, but WITHOUT ANY 141debfc3dSmrg WARRANTY; without even the implied warranty of MERCHANTABILITY or 151debfc3dSmrg FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 161debfc3dSmrg for more details. 171debfc3dSmrg 181debfc3dSmrg You should have received a copy of the GNU General Public License 191debfc3dSmrg along with GCC; see the file COPYING3. If not see 201debfc3dSmrg <http://www.gnu.org/licenses/>. */ 211debfc3dSmrg 221debfc3dSmrg #ifndef GCC_BACKEND_H 231debfc3dSmrg #define GCC_BACKEND_H 241debfc3dSmrg 251debfc3dSmrg /* This is an aggregation header file. This means it should contain only 261debfc3dSmrg other include files. */ 271debfc3dSmrg 281debfc3dSmrg #include "tm.h" 291debfc3dSmrg #include "function.h" 301debfc3dSmrg #include "bitmap.h" 311debfc3dSmrg #include "sbitmap.h" 321debfc3dSmrg #include "basic-block.h" 331debfc3dSmrg #include "cfg.h" 341debfc3dSmrg 351debfc3dSmrg #endif /*GCC_BACKEND_H */ 36