From: Richard Stallman Date: Mon, 7 Sep 1992 06:06:12 +0000 (+0000) Subject: (const_binop): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d7a4cf5cf04d770c252f8947cc7414ff9405255;p=gcc.git (const_binop): Fix typo. From-SVN: r2069 --- diff --git a/gcc/fold-const.c b/gcc/fold-const.c index cd14f75437a..6877b2c108b 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -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) {