diff options
Diffstat (limited to 'gcc/cp/mangle.c')
-rw-r--r-- | gcc/cp/mangle.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index 4235e35..b8feaffc 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -1194,14 +1194,14 @@ write_integer_cst (const tree cst) } do { - tree d = fold (build (FLOOR_DIV_EXPR, type, n, base)); - tree tmp = fold (build (MULT_EXPR, type, d, base)); + tree d = fold (build2 (FLOOR_DIV_EXPR, type, n, base)); + tree tmp = fold (build2 (MULT_EXPR, type, d, base)); unsigned c; done = integer_zerop (d); - tmp = fold (build (MINUS_EXPR, type, n, tmp)); + tmp = fold (build2 (MINUS_EXPR, type, n, tmp)); c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr, - done ? 1 : chunk_digits); + done ? 1 : chunk_digits); ptr -= c; count += c; n = d; |