Commit 2cd2a93e by Richard Kenner

(staticp, case INDIRECT_EXPR): Disable case.

From-SVN: r10416
parent b74f5ff2
......@@ -2058,8 +2058,13 @@ staticp (arg)
case BIT_FIELD_REF:
return staticp (TREE_OPERAND (arg, 0));
#if 0
/* This case is technically correct, but results in setting
TREE_CONSTANT on ADDR_EXPRs that cannot be evaluated at
compile time. */
case INDIRECT_REF:
return TREE_CONSTANT (TREE_OPERAND (arg, 0));
#endif
case ARRAY_REF:
if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
......
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