From 34e8234204cb51e65f0e4b325634208a227cc8f3 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Tue, 14 Mar 2017 12:47:42 +0000 Subject: alias.c (struct alias_set_entry): Pack properly. 2017-03-14 Richard Biener * alias.c (struct alias_set_entry): Pack properly. * cfgloop.h (struct loop): Likewise. * cse.c (struct set): Likewise. * ipa-utils.c (struct searchc_env): Likewise. * loop-invariant.c (struct invariant): Likewise. * lra-remat.c (struct cand): Likewise. * recog.c (struct change_t): Likewise. * rtl.h (struct address_info): Likewise. * symbol-summary.h (function_summary): Likewise. * tree-loop-distribution.c (struct partition): Likewise. * tree-object-size.c (struct object_size_info): Likewise. * tree-ssa-loop-ivopts.c (struct cost_pair): Likewise. * tree-ssa-threadupdate.c (struct ssa_local_info_t): Likewise. * tree-vect-data-refs.c (struct _vect_peel_info): Likewise. * tree-vect-slp.c (struct _slp_oprnd_info): Likewise. * tree-vect-stmts.c (struct simd_call_arg_info): Likewise. * tree-vectorizer.h (struct _loop_vec_info): Likewise. (struct _stmt_vec_info): Likewise. From-SVN: r246121 --- gcc/symbol-summary.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/symbol-summary.h') diff --git a/gcc/symbol-summary.h b/gcc/symbol-summary.h index 3bcd145..d0246f4 100644 --- a/gcc/symbol-summary.h +++ b/gcc/symbol-summary.h @@ -37,7 +37,7 @@ class GTY((user)) function_summary public: /* Default construction takes SYMTAB as an argument. */ function_summary (symbol_table *symtab, bool ggc = false): m_ggc (ggc), - m_map (13, ggc), m_insertion_enabled (true), m_released (false), + m_insertion_enabled (true), m_released (false), m_map (13, ggc), m_symtab (symtab) { m_symtab_insertion_hook = @@ -205,6 +205,10 @@ private: return *v; } + /* Indicates if insertion hook is enabled. */ + bool m_insertion_enabled; + /* Indicates if the summary is released. */ + bool m_released; /* Main summary store, where summary ID is used as key. */ hash_map m_map; /* Internal summary insertion hook pointer. */ @@ -213,10 +217,6 @@ private: cgraph_node_hook_list *m_symtab_removal_hook; /* Internal summary duplication hook pointer. */ cgraph_2node_hook_list *m_symtab_duplication_hook; - /* Indicates if insertion hook is enabled. */ - bool m_insertion_enabled; - /* Indicates if the summary is released. */ - bool m_released; /* Symbol table the summary is registered to. */ symbol_table *m_symtab; -- cgit v1.1