]> gcc.gnu.org Git - gcc.git/commitdiff
re PR target/53201 (unrecognized command line option '-mno-lzcnt-mno-hle)
authorKirill Yukhin <kirill.yukhin@intel.com>
Thu, 3 May 2012 06:50:16 +0000 (06:50 +0000)
committerKirill Yukhin <kyukhin@gcc.gnu.org>
Thu, 3 May 2012 06:50:16 +0000 (06:50 +0000)
        PR target/53201
        * config/i386/driver-i386.c (host_detect_local_cpu): Add space to
        "-mno-hle".

From-SVN: r187075

gcc/ChangeLog
gcc/config/i386/driver-i386.c

index d34288455bbf5f748d3c571fc5e4b5d9b839bd85..97ce580c86250e33c6f644830f027aa495980323 100644 (file)
@@ -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
index 34cd096109ebe3f58747583af07397ab9c56b998..e452ba5ec2899d03bf77915b66e51d71491551bf 100644 (file)
@@ -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,
This page took 0.071809 seconds and 5 git commands to generate.