|
From: <sv...@va...> - 2009-12-30 20:28:39
|
Author: sewardj
Date: 2009-12-30 20:28:24 +0000 (Wed, 30 Dec 2009)
New Revision: 10977
Log:
Back out changes to branches/ARM/Makefile.all.am and
branches/ARM/memcheck/mc_machine.c which were inadvertantly committed
as part of r10976.
Modified:
branches/ARM/Makefile.all.am
branches/ARM/coregrind/m_libcprint.c
Modified: branches/ARM/Makefile.all.am
===================================================================
--- branches/ARM/Makefile.all.am 2009-12-30 20:23:05 UTC (rev 10976)
+++ branches/ARM/Makefile.all.am 2009-12-30 20:28:24 UTC (rev 10977)
@@ -89,7 +89,7 @@
-Wstrict-prototypes \
-Wmissing-declarations \
@FLAG_W_NO_FORMAT_ZERO_LENGTH@ \
- -fno-strict-aliasing -O
+ -fno-strict-aliasing
# These flags are used for building the preload shared objects.
# The aim is to give reasonable performance but also to have good
Modified: branches/ARM/coregrind/m_libcprint.c
===================================================================
--- branches/ARM/coregrind/m_libcprint.c 2009-12-30 20:23:05 UTC (rev 10976)
+++ branches/ARM/coregrind/m_libcprint.c 2009-12-30 20:28:24 UTC (rev 10977)
@@ -470,8 +470,6 @@
/* Cache the results of getpid just once, so we don't have to call
getpid once for each line of text output. */
- b->my_pid = -1; /* LATER: cacheing is confusing in presence of fork(),
- disable for now. */
if (UNLIKELY(b->my_pid == -1)) {
b->my_pid = VG_(getpid)();
vg_assert(b->my_pid >= 0);
|