|
From: <sv...@va...> - 2008-12-18 01:20:16
|
Author: sewardj
Date: 2008-12-18 01:20:11 +0000 (Thu, 18 Dec 2008)
New Revision: 8838
Log:
HG_(instrument): don't assert on Imbe_SnoopedStore{Begin,End}.
Modified:
trunk/helgrind/hg_main.c
Modified: trunk/helgrind/hg_main.c
===================================================================
--- trunk/helgrind/hg_main.c 2008-12-17 19:21:17 UTC (rev 8837)
+++ trunk/helgrind/hg_main.c 2008-12-18 01:20:11 UTC (rev 8838)
@@ -3653,6 +3653,11 @@
tl_assert(x86busLocked == True);
x86busLocked = False;
break;
+ case Imbe_SnoopedStoreBegin:
+ case Imbe_SnoopedStoreEnd:
+ /* These arise from ppc stwcx. insns. They should
+ perhaps be handled better. */
+ break;
default:
goto unhandled;
}
|