|
From: <sv...@va...> - 2014-09-18 07:11:33
|
Author: bart
Date: Thu Sep 18 07:11:24 2014
New Revision: 14549
Log:
DRD: Handle Imbe_CancelReservation properly (clrex on ARM)
This was reported by Florian and was detected by analyzing the
compiler output with -Wswitch-enum enabled.
Modified:
trunk/drd/drd_load_store.c
Modified: trunk/drd/drd_load_store.c
==============================================================================
--- trunk/drd/drd_load_store.c (original)
+++ trunk/drd/drd_load_store.c Thu Sep 18 07:11:24 2014
@@ -633,7 +633,9 @@
switch (st->Ist.MBE.event)
{
case Imbe_Fence:
- break; /* not interesting */
+ break; /* not interesting to DRD */
+ case Imbe_CancelReservation:
+ break; /* not interesting to DRD */
default:
tl_assert(0);
}
|