From c79c9a8d9b07e03b8b4ad4bfccf25c511da68908 Mon Sep 17 00:00:00 2001 From: kyukhin Date: Thu, 3 May 2012 06:50:16 +0000 Subject: [PATCH] PR target/53201 * config/i386/driver-i386.c (host_detect_local_cpu): Add space to "-mno-hle". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@187075 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/i386/driver-i386.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d342884..97ce580 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-05-03 Kirill Yukhin + + PR target/53201 + * config/i386/driver-i386.c (host_detect_local_cpu): Add space to + "-mno-hle". + 2012-05-03 Michael Matz PR bootstrap/53197 diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c index 34cd096..e452ba5 100644 --- a/gcc/config/i386/driver-i386.c +++ b/gcc/config/i386/driver-i386.c @@ -728,7 +728,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) const char *sse4_2 = has_sse4_2 ? " -msse4.2" : " -mno-sse4.2"; const char *sse4_1 = has_sse4_1 ? " -msse4.1" : " -mno-sse4.1"; const char *lzcnt = has_lzcnt ? " -mlzcnt" : " -mno-lzcnt"; - const char *hle = has_hle ? " -mhle" : "-mno-hle"; + const char *hle = has_hle ? " -mhle" : " -mno-hle"; options = concat (options, cx16, sahf, movbe, ase, pclmul, popcnt, abm, lwp, fma, fma4, xop, bmi, bmi2, -- 2.7.4