diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-03-25 16:10:06 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-04-23 13:38:52 -0500 |
commit | 3c0265394d9ffedff2b0de508602dc52e077ce5c (patch) | |
tree | b24ae491b39263545fd8d3a3201491c11eea78ab /benchtests/Makefile | |
parent | ff491d14a2c7329e4b61cb9d937203d4139954f9 (diff) | |
download | glibc-3c0265394d9ffedff2b0de508602dc52e077ce5c.tar.gz glibc-3c0265394d9ffedff2b0de508602dc52e077ce5c.tar.xz glibc-3c0265394d9ffedff2b0de508602dc52e077ce5c.zip |
PowerPC: modf optimization
This patch implements modf/modff optimization for POWER by focus on FP operations instead of relying in integer ones.
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index c61fd87052..110c5d8270 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -45,7 +45,7 @@ # See pow-inputs for an example. subdir := benchtests -bench := exp pow rint sin cos tan atan \ +bench := exp pow rint sin cos tan atan modf \ slowexp slowpow slowsin slowcos slowtan slowatan # exp function fast path |