diff options
author | Jakub Jelinek <jakub@redhat.com> | 2015-11-30 15:56:08 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2015-11-30 15:56:08 +0100 |
commit | 7b90c63a28e85014656ecab28459dcd23c7d2457 (patch) | |
tree | 85c8ca3151ec7fc442e5d5aa3ec4917317da3cff /gcc/ChangeLog | |
parent | 7a5a0decae0af00cf736ec2c8558c185e59e47b8 (diff) | |
download | gcc-7b90c63a28e85014656ecab28459dcd23c7d2457.zip gcc-7b90c63a28e85014656ecab28459dcd23c7d2457.tar.gz gcc-7b90c63a28e85014656ecab28459dcd23c7d2457.tar.bz2 |
re PR tree-optimization/68501 (sqrt builtin is not used anymore)
PR tree-optimization/68501
* target.def (builtin_reciprocal): Replace the 3 arguments with
a gcall * one, adjust description.
* targhooks.h (default_builtin_reciprocal): Replace the 3 arguments
with a gcall * one.
* targhooks.c (default_builtin_reciprocal): Likewise.
* tree-ssa-math-opts.c (pass_cse_reciprocals::execute): Use
targetm.builtin_reciprocal even on internal functions, adjust
the arguments and allow replacing an internal function with normal
built-in.
* config/i386/i386.c (ix86_builtin_reciprocal): Replace the 3 arguments
with a gcall * one. Handle internal fns too.
* config/rs6000/rs6000.c (rs6000_builtin_reciprocal): Likewise.
* config/aarch64/aarch64.c (aarch64_builtin_reciprocal): Likewise.
* doc/tm.texi (builtin_reciprocal): Document.
From-SVN: r231075
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 94ce1a4..735fbd9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,21 @@ +2015-11-30 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/68501 + * target.def (builtin_reciprocal): Replace the 3 arguments with + a gcall * one, adjust description. + * targhooks.h (default_builtin_reciprocal): Replace the 3 arguments + with a gcall * one. + * targhooks.c (default_builtin_reciprocal): Likewise. + * tree-ssa-math-opts.c (pass_cse_reciprocals::execute): Use + targetm.builtin_reciprocal even on internal functions, adjust + the arguments and allow replacing an internal function with normal + built-in. + * config/i386/i386.c (ix86_builtin_reciprocal): Replace the 3 arguments + with a gcall * one. Handle internal fns too. + * config/rs6000/rs6000.c (rs6000_builtin_reciprocal): Likewise. + * config/aarch64/aarch64.c (aarch64_builtin_reciprocal): Likewise. + * doc/tm.texi (builtin_reciprocal): Document. + 2015-11-30 Richard Biener <rguenther@suse.de> PR tree-optimization/68592 |