diff options
author | Richard Henderson <rth@redhat.com> | 2003-06-03 14:29:48 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-06-03 14:29:48 -0700 |
commit | 2ef0a555115b893fcd775844882435e07552b4b9 (patch) | |
tree | 474d4af43e85adcdc142a5e4c94f30a48a445a94 /gcc/optabs.h | |
parent | b0c242c02902036570dc8c65f76361cc27f2f119 (diff) | |
download | gcc-2ef0a555115b893fcd775844882435e07552b4b9.zip gcc-2ef0a555115b893fcd775844882435e07552b4b9.tar.gz gcc-2ef0a555115b893fcd775844882435e07552b4b9.tar.bz2 |
optabs.c (expand_abs_nojump): Split out from ...
* optabs.c (expand_abs_nojump): Split out from ...
(expand_abs): ... here.
* optabs.h (expand_abs_nojump): Declare.
* ifcvt.c: (noce_try_abs): Use expand_abs_nojump.
* Makefile.in (ifcvt.o): Depend on optabs.h.
From-SVN: r67404
Diffstat (limited to 'gcc/optabs.h')
-rw-r--r-- | gcc/optabs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/optabs.h b/gcc/optabs.h index e9f95fa..22e2422 100644 --- a/gcc/optabs.h +++ b/gcc/optabs.h @@ -306,6 +306,7 @@ extern int expand_twoval_binop PARAMS ((optab, rtx, rtx, rtx, rtx, int)); extern rtx expand_unop PARAMS ((enum machine_mode, optab, rtx, rtx, int)); /* Expand the absolute value operation. */ +extern rtx expand_abs_nojump PARAMS ((enum machine_mode, rtx, rtx, int)); extern rtx expand_abs PARAMS ((enum machine_mode, rtx, rtx, int, int)); /* Expand the complex absolute value operation. */ |