diff options
author | kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-23 11:44:12 +0000 |
---|---|---|
committer | kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-23 11:44:12 +0000 |
commit | 6c95e7741c2e2d25353a2b464ac09db3aaecf18b (patch) | |
tree | 6b97fac078b69a1e6c9007bd4de58448c278b49e /gcc/tree.h | |
parent | e09e6e54652769c100344318ad31b453a20bf401 (diff) | |
download | gcc-6c95e7741c2e2d25353a2b464ac09db3aaecf18b.tar.gz |
AVX-512. 81.1/n. Extend `function_code' field `tree_var_decl' structure.
gcc/
* tree-core.h (tree_var_decl): Extend `function_code' field
by one bit, move `regdecl_flag' field to ...
(tree_decl_with_vis): Here.
* tree.h (DECL_STATIC_CHAIN): Update struct name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216590 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 45f127fd644..2a085c9ba21 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2553,7 +2553,7 @@ extern void decl_fini_priority_insert (tree, priority_type); /* In a FUNCTION_DECL indicates that a static chain is needed. */ #define DECL_STATIC_CHAIN(NODE) \ - (FUNCTION_DECL_CHECK (NODE)->function_decl.regdecl_flag) + (FUNCTION_DECL_CHECK (NODE)->decl_with_vis.regdecl_flag) /* Nonzero for a decl that cgraph has decided should be inlined into at least one call site. It is not meaningful to look at this |