diff options
author | razya <razya@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-28 11:10:27 +0000 |
---|---|---|
committer | razya <razya@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-28 11:10:27 +0000 |
commit | 604cde738b5e08e4b7ec76087373e25e1ad3f07b (patch) | |
tree | 438fd56569603b56035ec8c6adb7973791f877e6 /gcc/cgraph.h | |
parent | ac15809b87e138f25481c3e994e30bd946b4cc6d (diff) | |
download | gcc-604cde738b5e08e4b7ec76087373e25e1ad3f07b.tar.gz |
2007-05-07 Razya Ladelsky <razya@il.ibm.com>
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125126 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index b905bfdf6c3..a9879375276 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 */ |