(const_binop): Fix typo.

From-SVN: r2069
This commit is contained in:
Richard Stallman 1992-09-07 06:06:12 +00:00
parent 3b9b4d3fa6
commit 2d7a4cf5cf

View File

@ -1049,7 +1049,7 @@ const_binop (code, arg1, arg2)
int uns = TREE_UNSIGNED (TREE_TYPE (arg1));
/* Propagate overflow flags from operands; also record new overflow. */
int overflow
= TREE_CONSTANT_OVERFLOW (arg0) | TREE_CONSTANT_OVERFLOW (arg1);
= TREE_CONSTANT_OVERFLOW (arg1) | TREE_CONSTANT_OVERFLOW (arg2);
switch (code)
{