diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index be97417..f5bd659 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -135,7 +135,6 @@ static bool reorder_operands_p (tree, tree); static bool tree_swap_operands_p (tree, tree, bool); static tree fold_negate_const (tree, tree); -static tree fold_abs_const (tree, tree); static tree fold_not_const (tree, tree); static tree fold_relational_const (enum tree_code, tree, tree, tree); static tree fold_relational_hi_lo (enum tree_code *, const tree, @@ -9846,7 +9845,7 @@ fold_negate_const (tree arg0, tree type) TYPE is the type of the result. */ -static tree +tree fold_abs_const (tree arg0, tree type) { tree t = NULL_TREE; |