Commit 5de72424 by Bernd Schmidt Committed by Bernd Schmidt

c-typeck.c (pointer_diff): Check for POINTER_PLUS_EXPR, not PLUS_EXPR.

	* c-typeck.c (pointer_diff): Check for POINTER_PLUS_EXPR, not
	PLUS_EXPR.

From-SVN: r184965
parent 3b1552c1
2012-03-05 Bernd Schmidt <bernds@codesourcery.com>
* c-typeck.c (pointer_diff): Check for POINTER_PLUS_EXPR, not
PLUS_EXPR.
2012-03-05 Richard Henderson <rth@redhat.com>
* genemit.c (main): Include "target.h" in insn-emit.c.
......
......@@ -3447,7 +3447,9 @@ pointer_diff (location_t loc, tree op0, tree op1)
else
con1 = op1;
if (TREE_CODE (con0) == PLUS_EXPR)
gcc_assert (TREE_CODE (con0) != PLUS_EXPR
&& TREE_CODE (con1) != PLUS_EXPR);
if (TREE_CODE (con0) == POINTER_PLUS_EXPR)
{
lit0 = TREE_OPERAND (con0, 1);
con0 = TREE_OPERAND (con0, 0);
......@@ -3455,7 +3457,7 @@ pointer_diff (location_t loc, tree op0, tree op1)
else
lit0 = integer_zero_node;
if (TREE_CODE (con1) == PLUS_EXPR)
if (TREE_CODE (con1) == POINTER_PLUS_EXPR)
{
lit1 = TREE_OPERAND (con1, 1);
con1 = TREE_OPERAND (con1, 0);
......
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