Commit 47adc016 by Diego Novillo Committed by Diego Novillo

tree-ssa-alias.c (add_type_alias): Fix typo.


	* tree-ssa-alias.c (add_type_alias): Fix typo.  Test whether
	VAR is a tag, not its type tag.

From-SVN: r109673
parent 08d295c5
2006-01-13 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-alias.c (add_type_alias): Fix typo. Test whether
VAR is a tag, not its type tag.
2006-01-13 Alexandre Oliva <aoliva@redhat.com> 2006-01-13 Alexandre Oliva <aoliva@redhat.com>
* config/i386/sse.md (*vec_extractv2di_1_sse2): Reorder * config/i386/sse.md (*vec_extractv2di_1_sse2): Reorder
......
...@@ -2307,7 +2307,7 @@ add_type_alias (tree ptr, tree var) ...@@ -2307,7 +2307,7 @@ add_type_alias (tree ptr, tree var)
found_tag: found_tag:
/* If VAR is not already PTR's type tag, add it to the may-alias set /* If VAR is not already PTR's type tag, add it to the may-alias set
for PTR's type tag. */ for PTR's type tag. */
gcc_assert (!MTAG_P (var_ann (var)->type_mem_tag)); gcc_assert (!MTAG_P (var));
tag = ann->type_mem_tag; tag = ann->type_mem_tag;
/* If VAR has subvars, add the subvars to the tag instead of the /* If VAR has subvars, add the subvars to the tag instead of the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment