aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBrendan Kehoe <brendan@gcc.gnu.org>1993-01-12 18:30:21 -0500
committerBrendan Kehoe <brendan@gcc.gnu.org>1993-01-12 18:30:21 -0500
commit3d9a7827ed18e5f952b888b177d471cf3be2d16c (patch)
tree08ac179764f5f79688b99c5061299c63eb1553ba /gcc
parentc3c305882b29884f904b316cb870a920215cd994 (diff)
downloadgcc-3d9a7827ed18e5f952b888b177d471cf3be2d16c.zip
gcc-3d9a7827ed18e5f952b888b177d471cf3be2d16c.tar.gz
gcc-3d9a7827ed18e5f952b888b177d471cf3be2d16c.tar.bz2
* fold-const.c (fold): Only call force_fit_type with one arg.
From-SVN: r3210
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fold-const.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index 33d0253..ba23fd4 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -3287,7 +3287,7 @@ fold (expr)
&low, &high);
t = build_int_2 (low, high);
TREE_TYPE (t) = type;
- force_fit_type (t, overflow);
+ force_fit_type (t);
}
}
else if (TREE_CODE (arg0) == REAL_CST)