From 43d861a5bc03c1c9ed1dde4ca7bf1593771d7e6e Mon Sep 17 00:00:00 2001 From: Razya Ladelsky Date: Mon, 28 May 2007 11:10:27 +0000 Subject: matrix-reorg.c: New file. 2007-05-07 Razya Ladelsky * matrix-reorg.c: New file. Implement matrix flattening and transposing optimization. * tree-pass.h: Add matrix reorg pass. * common.opt: Add fipa-mreorg flag. * Makefile.in: Add matrix-reorg.c. * passes.c: Add matrix reorg pass. * varpool.c (add_new_static_var): New function. * cgraph.h (add_new_static_var): Declare. From-SVN: r125126 --- gcc/cgraph.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/cgraph.h') diff --git a/gcc/cgraph.h b/gcc/cgraph.h index b905bfd..a987937 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -410,4 +410,9 @@ varpool_next_static_initializer (struct varpool_node *node) void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool, bool); void cgraph_mark_inline_edge (struct cgraph_edge *, bool); bool cgraph_default_inline_p (struct cgraph_node *, const char **); + + +/* Create a new static variable of type TYPE. */ +tree add_new_static_var (tree type); + #endif /* GCC_CGRAPH_H */ -- cgit v1.1