|
From: <sv...@va...> - 2014-10-11 13:55:00
|
Author: sewardj
Date: Sat Oct 11 14:54:52 2014
New Revision: 14618
Log:
Handle (by ignoring) Imbe_CancelReservation. Detected by Florian
Krohm when compiling with -Wswitch-enum.
Modified:
trunk/helgrind/hg_main.c
Modified: trunk/helgrind/hg_main.c
==============================================================================
--- trunk/helgrind/hg_main.c (original)
+++ trunk/helgrind/hg_main.c Sat Oct 11 14:54:52 2014
@@ -4558,6 +4558,7 @@
case Ist_MBE:
switch (st->Ist.MBE.event) {
case Imbe_Fence:
+ case Imbe_CancelReservation:
break; /* not interesting */
default:
goto unhandled;
|