From: Philippe Waroquiers Date: Sun, 24 Aug 2014 11:24:10 +0000 (+0000) Subject: 338499 --sim-hints parsing broken due to wrong order in tokens (after introduction... X-Git-Tag: svn/VALGRIND_3_10_0~146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59990c4f9dd119c3596f027502361204e2bc59cb;p=thirdparty%2Fvalgrind.git 338499 --sim-hints parsing broken due to wrong order in tokens (after introduction of no-nptl-pthread-stackcache) Fix the token order in m_main.c Somewhat retested by running the regression tests (testing no-nptl-pthread-stackcache) and testing in an outer/inner setup (testing enable-outer,no-inner-prefix). It seems there is no regtest for the 2 other flags (lax-ioctls,fuse-compatible) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14349 --- diff --git a/NEWS b/NEWS index 09103fe892..2078d006fd 100644 --- a/NEWS +++ b/NEWS @@ -215,6 +215,7 @@ where XXXXXX is the bug number as listed below. 338160 implement display of thread local storage in gdbsrv 338205 configure.ac and check for -Wno-tautological-compare 338445 amd64 vbit-test fails with unknown opcodes used by arm64 VEX +338499 --sim-hints parsing broken due to wrong order in tokens n-i-bz Fix KVM_CREATE_IRQCHIP ioctl handling n-i-bz s390x: Fix memory corruption for multithreaded applications n-i-bz vex arm->IR: allow PC as basereg in some LDRD cases diff --git a/coregrind/m_main.c b/coregrind/m_main.c index d0093f1c31..796c9ebf60 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -379,8 +379,8 @@ static void early_process_cmd_line_options ( /*OUT*/Int* need_help, // running in an outer, to have "no-inner-prefix" enabled // as early as possible. else if VG_USETX_CLO (str, "--sim-hints", - "no-inner-prefix,fuse-compatible," - "lax-ioctls,enable-outer," + "lax-ioctls,fuse-compatible," + "enable-outer,no-inner-prefix," "no-nptl-pthread-stackcache", VG_(clo_sim_hints)) {} }