diff options
author | Laurynas Biveinis <laurynas.biveinis@gmail.com> | 2010-12-03 04:58:47 +0000 |
---|---|---|
committer | Laurynas Biveinis <lauras@gcc.gnu.org> | 2010-12-03 04:58:47 +0000 |
commit | fba4cb03e98178b65d41dcce32a1233358596132 (patch) | |
tree | b5eacb7d19ea31e3b1f6dae031254bd95f59aeb7 /gcc/cselib.c | |
parent | 2e3331995e674fd5b4e7d370ec3bad48e9d8e8f1 (diff) | |
download | gcc-fba4cb03e98178b65d41dcce32a1233358596132.zip gcc-fba4cb03e98178b65d41dcce32a1233358596132.tar.gz gcc-fba4cb03e98178b65d41dcce32a1233358596132.tar.bz2 |
basic-block.h (struct edge_prediction): Remove forward declaration.
2010-12-01 Laurynas Biveinis <laurynas.biveinis@gmail.com>
* basic-block.h (struct edge_prediction): Remove forward
declaration.
* tree-flow.h (struct edge_prediction): Move from here...
* predict.c (struct edge_prediction): ...to here.
* cselib.h (struct elt_list): Move from here...
* cselib.c (struct elt_list): ...to here.
From-SVN: r167409
Diffstat (limited to 'gcc/cselib.c')
-rw-r--r-- | gcc/cselib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/cselib.c b/gcc/cselib.c index 6009301..8f5e45b 100644 --- a/gcc/cselib.c +++ b/gcc/cselib.c @@ -44,6 +44,12 @@ along with GCC; see the file COPYING3. If not see #include "target.h" #include "bitmap.h" +/* A list of cselib_val structures. */ +struct elt_list { + struct elt_list *next; + cselib_val *elt; +}; + static bool cselib_record_memory; static bool cselib_preserve_constants; static int entry_and_rtx_equal_p (const void *, const void *); |