diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-03 21:29:48 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-03 21:29:48 +0000 |
commit | 8ed073f5481b02f3c347aaca2946ad3c4ee835fd (patch) | |
tree | 474d4af43e85adcdc142a5e4c94f30a48a445a94 /gcc/optabs.h | |
parent | 44bbb5f37df96b6aa1bce7ef396fb6100a1b2b95 (diff) | |
download | gcc-8ed073f5481b02f3c347aaca2946ad3c4ee835fd.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67404 138bc75d-0d04-0410-961f-82ee72b054a4
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 e9f95fa9091..22e2422ccd1 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. */ |