diff options
author | Kirill Yukhin <kirill.yukhin@intel.com> | 2012-05-03 06:50:16 +0000 |
---|---|---|
committer | Kirill Yukhin <kyukhin@gcc.gnu.org> | 2012-05-03 06:50:16 +0000 |
commit | 38d7f26e0d2b745de85f9b7ce4c3228b4b5e349c (patch) | |
tree | 8a69d0e62e939f1b8a934a11a8debd2bd314d32a /gcc | |
parent | 0285a18ecdb2cb32b6fa00b31eff14673b5e1116 (diff) | |
download | gcc-38d7f26e0d2b745de85f9b7ce4c3228b4b5e349c.zip gcc-38d7f26e0d2b745de85f9b7ce4c3228b4b5e349c.tar.gz gcc-38d7f26e0d2b745de85f9b7ce4c3228b4b5e349c.tar.bz2 |
re PR target/53201 (unrecognized command line option '-mno-lzcnt-mno-hle)
PR target/53201
* config/i386/driver-i386.c (host_detect_local_cpu): Add space to
"-mno-hle".
From-SVN: r187075
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/driver-i386.c | 2 |
2 files changed, 7 insertions, 1 deletions
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 <kirill.yukhin@intel.com> + + PR target/53201 + * config/i386/driver-i386.c (host_detect_local_cpu): Add space to + "-mno-hle". + 2012-05-03 Michael Matz <matz@suse.de> 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, |