arch-arm: Add initial support for SVE contiguous loads/stores
[gem5.git] / src / arch / sparc / locked_mem.hh
index 291b2f422ba8d4ac6f24c3bf3c3fd06cee1a5174..90760d586b8ecdc134d4b3a9e3a6f02c65087017 100644 (file)
  * ISA-specific helper functions for locked memory accesses.
  */
 
-#include "mem/request.hh"
-
-
-namespace SparcISA
-{
-template <class XC>
-inline void
-handleLockedRead(XC *xc, Request *req)
-{
-}
-
-
-template <class XC>
-inline bool
-handleLockedWrite(XC *xc, Request *req)
-{
-    return true;
-}
-
-
-} // namespace SparcISA
+#include "arch/generic/locked_mem.hh"
 
 #endif