diff options
author | Richard Guenther <rguenther@suse.de> | 2008-03-05 19:33:55 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2008-03-05 19:33:55 +0000 |
commit | 63d195d54831cf004606e99dff8ca706939635f4 (patch) | |
tree | 42fdab63279de985eda1b5dc05468e61bbddbb5d /gcc/Makefile.in | |
parent | ea7e6d5ae0e3b5d14740bd33d55302a73f6d2b32 (diff) | |
download | gcc-63d195d54831cf004606e99dff8ca706939635f4.zip gcc-63d195d54831cf004606e99dff8ca706939635f4.tar.gz gcc-63d195d54831cf004606e99dff8ca706939635f4.tar.bz2 |
tree-ssa-structalias.c (get_constraint_for_component_ref): Use ranges_overlap_p.
2008-03-05 Richard Guenther <rguenther@suse.de>
* tree-ssa-structalias.c (get_constraint_for_component_ref):
Use ranges_overlap_p.
(offset_overlaps_with_access): Rename
to ranges_overlap_p and move ...
* tree-flow-inline.h (ranges_overlap_p): ... here.
* tree.h (get_inner_reference, handled_component_p): Update
comments.
* tree.h (record_component_aliases, get_alias_set,
alias_sets_conflict_p, alias_sets_must_conflict_p,
objects_must_conflict_p): Move declarations ...
* alias.h (record_component_aliases, get_alias_set,
alias_sets_conflict_p, alias_sets_must_conflict_p,
objects_must_conflict_p): ... here.
Include coretypes.h.
* Makefile.in (ALIAS_H): Add coretypes.h dependency.
From-SVN: r132950
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 4522e1d..8e4daf5 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -790,7 +790,7 @@ GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h COVERAGE_H = coverage.h $(GCOV_IO_H) DEMANGLE_H = $(srcdir)/../include/demangle.h RECOG_H = recog.h -ALIAS_H = alias.h +ALIAS_H = alias.h coretypes.h EMIT_RTL_H = emit-rtl.h FLAGS_H = flags.h options.h FUNCTION_H = function.h $(TREE_H) $(HASHTAB_H) |