Commit 7ffc27a6 by Richard Guenther Committed by Richard Biener

re PR middle-end/31950 (ICE in tree-ssa-alias-warnings.c)

2007-06-19  Richard Guenther  <rguenther@suse.de>

	PR middle-end/31950
	* tree-ssa-alias-warnings.c (ffan_walker): Punt on MTAGs.

From-SVN: r125846
parent a3a7addb
2007-06-19 Richard Guenther <rguenther@suse.de>
PR middle-end/31950
* tree-ssa-alias-warnings.c (ffan_walker): Punt on MTAGs.
2007-06-19 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/32353
......
......@@ -635,7 +635,7 @@ ffan_walker (tree *t,
int *go_below ATTRIBUTE_UNUSED,
void *data ATTRIBUTE_UNUSED)
{
if (DECL_P (*t) && DECL_ARTIFICIAL (*t))
if (DECL_P (*t) && !MTAG_P (*t) && DECL_ARTIFICIAL (*t))
return *t;
else
return NULL_TREE;
......
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