summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2015-08-24 10:11:29 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2015-08-24 10:11:29 +0000
commitb9716c8cd40ce733f97b5dca37d5e1e4780321af (patch)
tree5fd6314eaf628b14e110cb8074e4cf73b324285b
parentfad708b4d2a0e677e05bac801c8995fc7c167d63 (diff)
downloadmpfr-b9716c8cd40ce733f97b5dca37d5e1e4780321af.tar.gz
fixed the AMD K8 tuning (cf r8118)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9652 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--src/mparam_h.in8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mparam_h.in b/src/mparam_h.in
index 09b30efdf..841b8e2d7 100644
--- a/src/mparam_h.in
+++ b/src/mparam_h.in
@@ -45,13 +45,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
#define MPFR_TUNE_CASE "src/x86/core2/mparam.h"
#include "x86/core2/mparam.h"
-#elif defined (__tune_k8__) || defined (__amd64__) /* AMD 64, a.k.a. x86_64 */
-/* FIXME: The path is misleading since once may think that an AMD processor
- has been detected, while __amd64__ is generic to all x86 processors with
- a 64-bit ABI (amd64, a.k.a. x86_64). Move the file to some other place?
- e.g. src/generic/amd64/mparam.h, or perhaps move subdirectories of "amd"
- into x86_64 as done by GMP ("k8" wouldn't be wrong as this is the default
- x86_64 architecture for GCC). */
+#elif defined (__tune_k8__) && defined (__amd64__) /* AMD K8 */
#define MPFR_TUNE_CASE "src/amd/k8/mparam.h"
#include "amd/k8/mparam.h"