Commit 38d7f26e by Kirill Yukhin Committed by Kirill Yukhin

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
parent 0285a18e
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
......
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment