diff options
Diffstat (limited to 'gcc/c-family/c-common.c')
-rw-r--r-- | gcc/c-family/c-common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index 37a5f1e45d4..e5849efc2ae 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -35,6 +35,7 @@ along with GCC; see the file COPYING3. If not see #include "obstack.h" #include "cpplib.h" #include "target.h" +#include "common/common-target.h" #include "langhooks.h" #include "tree-inline.h" #include "toplev.h" @@ -6563,7 +6564,7 @@ handle_section_attribute (tree *node, tree ARG_UNUSED (name), tree args, { tree decl = *node; - if (targetm.have_named_sections) + if (targetm_common.have_named_sections) { user_defined_section_attribute = true; |