From eb1d81598d4b4413ec5fe730036c16202afad6b6 Mon Sep 17 00:00:00 2001 From: Ilya Enkovich Date: Wed, 20 Nov 2013 13:50:44 +0000 Subject: cgraph.h (varpool_node): Add need_bounds_init field. * cgraph.h (varpool_node): Add need_bounds_init field. * lto-cgraph.c (lto_output_varpool_node): Output need_bounds_init value. (input_varpool_node): Read need_bounds_init value. * varpool.c (dump_varpool_node): Dump need_bounds_init field. From-SVN: r205116 --- gcc/cgraph.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gcc/cgraph.h') diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 4acf2d0..15719fb 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -528,6 +528,10 @@ class GTY((tag ("SYMTAB_VARIABLE"))) varpool_node : public symtab_node { public: /* Set when variable is scheduled to be assembled. */ unsigned output : 1; + + /* Set when variable has statically initialized pointer + or is a static bounds variable and needs initalization. */ + unsigned need_bounds_init : 1; }; /* Every top level asm statement is put into a asm_node. */ -- cgit v1.1