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

From-SVN: r5274
This commit is contained in:
Richard Kenner 1993-09-07 14:32:05 -04:00
parent 71f1501370
commit ac27d58987

View File

@ -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))
{