1*0bfacb9bSmrg /* Common hooks for TI PRU
2*0bfacb9bSmrg    Copyright (C) 2014-2020 Free Software Foundation, Inc.
3*0bfacb9bSmrg 
4*0bfacb9bSmrg This file is part of GCC.
5*0bfacb9bSmrg 
6*0bfacb9bSmrg GCC is free software; you can redistribute it and/or modify
7*0bfacb9bSmrg it under the terms of the GNU General Public License as published by
8*0bfacb9bSmrg the Free Software Foundation; either version 3, or (at your option)
9*0bfacb9bSmrg any later version.
10*0bfacb9bSmrg 
11*0bfacb9bSmrg GCC is distributed in the hope that it will be useful,
12*0bfacb9bSmrg but WITHOUT ANY WARRANTY; without even the implied warranty of
13*0bfacb9bSmrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*0bfacb9bSmrg GNU General Public License for more details.
15*0bfacb9bSmrg 
16*0bfacb9bSmrg You should have received a copy of the GNU General Public License
17*0bfacb9bSmrg along with GCC; see the file COPYING3.  If not see
18*0bfacb9bSmrg <http://www.gnu.org/licenses/>.  */
19*0bfacb9bSmrg 
20*0bfacb9bSmrg #include "config.h"
21*0bfacb9bSmrg #include "system.h"
22*0bfacb9bSmrg #include "coretypes.h"
23*0bfacb9bSmrg #include "diagnostic-core.h"
24*0bfacb9bSmrg #include "tm.h"
25*0bfacb9bSmrg #include "common/common-target.h"
26*0bfacb9bSmrg #include "common/common-target-def.h"
27*0bfacb9bSmrg #include "opts.h"
28*0bfacb9bSmrg #include "flags.h"
29*0bfacb9bSmrg 
30*0bfacb9bSmrg #undef TARGET_DEFAULT_TARGET_FLAGS
31*0bfacb9bSmrg #define TARGET_DEFAULT_TARGET_FLAGS		(MASK_OPT_LOOP)
32*0bfacb9bSmrg 
33*0bfacb9bSmrg #undef TARGET_EXCEPT_UNWIND_INFO
34*0bfacb9bSmrg #define TARGET_EXCEPT_UNWIND_INFO sjlj_except_unwind_info
35*0bfacb9bSmrg 
36*0bfacb9bSmrg struct gcc_targetm_common targetm_common = TARGETM_COMMON_INITIALIZER;
37