diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-16 00:55:20 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-16 00:55:20 +0000 |
| commit | b332f9426b0803dcbf70277c8c6558018a2626b1 (patch) | |
| tree | ecb880d7f69d7186f720a8d961d9a1beb89f9daa | |
| parent | a0bd242018aeef594676b08c4fee238e18501334 (diff) | |
| download | ppe42-gcc-b332f9426b0803dcbf70277c8c6558018a2626b1.tar.gz ppe42-gcc-b332f9426b0803dcbf70277c8c6558018a2626b1.zip | |
* tree-ssa-structalias.h (alias_info): Remove num_references.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112979 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 2 | ||||
| -rw-r--r-- | gcc/tree-ssa-structalias.h | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e50a0476e33..2ace1f1a570 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -4,6 +4,8 @@ jump.c, mips-tfile.c, omp-low.c, sched-int.h, tree-ssa-loop-prefetch.c, tree-vrp.c: Fix comment typos. + * tree-ssa-structalias.h (alias_info): Remove num_references. + 2006-04-15 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * pa.md (output_bb patterns): Shorten long branch alternatives by 4. diff --git a/gcc/tree-ssa-structalias.h b/gcc/tree-ssa-structalias.h index 008c0156b87..46fe0c13ad0 100644 --- a/gcc/tree-ssa-structalias.h +++ b/gcc/tree-ssa-structalias.h @@ -52,11 +52,6 @@ struct alias_info /* Number of const/pure function calls found in the program. */ size_t num_pure_const_calls_found; - /* Array of counters to keep track of how many times each pointer has - been dereferenced in the program. This is used by the alias grouping - heuristic in compute_flow_insensitive_aliasing. */ - varray_type num_references; - /* Total number of virtual operands that will be needed to represent all the aliases of all the pointers found in the program. */ long total_alias_vops; |

