On 07/27/15 07:43, Jakub Jelinek wrote:
On Mon, Jul 27, 2015 at 07:33:59AM -0400, Nathan Sidwell wrote:
They are only global objects if they are filled with constants. Right know for kinds array that is true always, for sizes array if no VLAs nor variable length array sections are used. They are initially TREE_STATIC (var) = 1; but we later on clear it with TREE_STATIC (var) = 0; if it is constant (this is still before the decls are finalized).
Ok, I'd missed that. thanks.