1*3ad841b2Smrg /* read-rtl-function.h - Reader for RTL function dumps 2*3ad841b2Smrg Copyright (C) 2016-2017 Free Software Foundation, Inc. 3*3ad841b2Smrg 4*3ad841b2Smrg This file is part of GCC. 5*3ad841b2Smrg 6*3ad841b2Smrg GCC is free software; you can redistribute it and/or modify it under 7*3ad841b2Smrg the terms of the GNU General Public License as published by the Free 8*3ad841b2Smrg Software Foundation; either version 3, or (at your option) any later 9*3ad841b2Smrg version. 10*3ad841b2Smrg 11*3ad841b2Smrg GCC is distributed in the hope that it will be useful, but WITHOUT ANY 12*3ad841b2Smrg WARRANTY; without even the implied warranty of MERCHANTABILITY or 13*3ad841b2Smrg FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14*3ad841b2Smrg for more details. 15*3ad841b2Smrg 16*3ad841b2Smrg You should have received a copy of the GNU General Public License 17*3ad841b2Smrg along with GCC; see the file COPYING3. If not see 18*3ad841b2Smrg <http://www.gnu.org/licenses/>. */ 19*3ad841b2Smrg 20*3ad841b2Smrg #ifndef GCC_READ_RTL_FUNCTION_H 21*3ad841b2Smrg #define GCC_READ_RTL_FUNCTION_H 22*3ad841b2Smrg 23*3ad841b2Smrg extern bool read_rtl_function_body (const char *path); 24*3ad841b2Smrg 25*3ad841b2Smrg extern bool read_rtl_function_body_from_file_range (location_t start_loc, 26*3ad841b2Smrg location_t end_loc); 27*3ad841b2Smrg 28*3ad841b2Smrg #endif /* GCC_READ_RTL_FUNCTION_H */ 29