* fold-const.c (fold_binary): Use fold_build2, not
fold (build (...)).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107822
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-12-01 Richard Guenther <rguenther@suse.de>
+
+ * fold-const.c (fold_binary): Use fold_build2, not
+ fold (build (...)).
+
2005-12-01 Nathan Sidwell <nathan@codesourcery.com>
* config/ms1/ms1.c (ms1_reorg_hazard): Don't count noop moves.
{
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);
}
}
}