|
From: <sv...@va...> - 2014-08-24 11:24:31
|
Author: philippe
Date: Sun Aug 24 11:24:10 2014
New Revision: 14349
Log:
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)
Modified:
trunk/NEWS
trunk/coregrind/m_main.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Sun Aug 24 11:24:10 2014
@@ -215,6 +215,7 @@
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
Modified: trunk/coregrind/m_main.c
==============================================================================
--- trunk/coregrind/m_main.c (original)
+++ trunk/coregrind/m_main.c Sun Aug 24 11:24:10 2014
@@ -379,8 +379,8 @@
// 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)) {}
}
|