diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 53f737d..dfac2ed 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -8427,9 +8427,9 @@ fold_binary (enum tree_code code, tree type, tree op0, tree op1) { tree tmp = TREE_OPERAND (arg0, 1); tmp = build_function_call_expr (cosfn, tmp); - return fold (build (RDIV_EXPR, type, + return fold_build2 (RDIV_EXPR, type, build_real (type, dconst1), - tmp)); + tmp); } } } |