Commit 6efa2c71 by Dale Johannesen Committed by Dale Johannesen

tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Don't reference operand 1 of ADDR_EXPRs.


2004-12-19  Dale Johannesen  <dalej@apple.com>

	* tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p):  Don't
	reference operand 1 of ADDR_EXPRs.

From-SVN: r92405
parent 5e2f4cd2
2004-12-19 Dale Johannesen <dalej@apple.com>
* tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Don't
reference operand 1 of ADDR_EXPRs.
2004-12-19 Mark Mitchell <mark@codesourcery.com>
* defaults.h (ASM_OUTPUT_INTERNAL_LABEL): New macro.
......
......@@ -834,7 +834,7 @@ contains_abnormal_ssa_name_p (tree expr)
return false;
if (code == ADDR_EXPR)
return !for_each_index (&TREE_OPERAND (expr, 1),
return !for_each_index (&TREE_OPERAND (expr, 0),
idx_contains_abnormal_ssa_name_p,
NULL);
......
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