Commit ac27d589 by Richard Kenner

(fold): Don't try to process an RTL_EXPR.

From-SVN: r5274
parent 71f15013
......@@ -3070,6 +3070,10 @@ fold (expr)
int wins = 1;
/* Don't try to process an RTL_EXPR since its operands aren't trees. */
if (code == RTL_EXPR)
return t;
/* Return right away if already constant. */
if (TREE_CONSTANT (t))
{
......
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