base,mem: Use the standard [[deprecated]] attribute.
authorGabe Black <gabeblack@google.com>
Sat, 26 Sep 2020 23:24:17 +0000 (16:24 -0700)
committerGabe Black <gabeblack@google.com>
Mon, 28 Sep 2020 21:52:41 +0000 (21:52 +0000)
The [[deprecated]] attribute is now standard, and so we don't need to
wrap it in our own macro any more.

Change-Id: I363df9a9c6b820dee8c21b1716335c0d15fbc62d
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/35216
Maintainer: Gabe Black <gabeblack@google.com>
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Tested-by: kokoro <noreply+kokoro@google.com>
src/base/compiler.hh
src/mem/mem_object.hh
src/mem/port.hh

index c2eb5d910f76afe496ea680ebe7e6be3bbd45aeb..e28d45ee4afdf3b71a20b6633db5a57a9c5bcb47 100644 (file)
@@ -49,8 +49,6 @@
 #  define M5_VAR_USED __attribute__((unused))
 #  define M5_ATTR_PACKED __attribute__ ((__packed__))
 #  define M5_NO_INLINE __attribute__ ((__noinline__))
-#  define M5_DEPRECATED __attribute__((deprecated))
-#  define M5_DEPRECATED_MSG(MSG) __attribute__((deprecated(MSG)))
 #  define M5_UNREACHABLE __builtin_unreachable()
 #  define M5_PUBLIC __attribute__ ((visibility ("default")))
 #  define M5_LOCAL __attribute__ ((visibility ("hidden")))
index 7cce0c9987616c3dc7c49428c57848da46638dd9..52208361947cb233eda8ef7c232546ab5f014a86 100644 (file)
@@ -55,8 +55,8 @@
 class MemObject : public ClockedObject
 {
   public:
-    M5_DEPRECATED_MSG(
-            "MemObject is deprecated. Use ClockedObject or SimObject instead")
+    [[deprecated(
+        "MemObject is deprecated. Use ClockedObject or SimObject instead")]]
         MemObject(const MemObjectParams *params) : ClockedObject(params)
     {}
 };
index c933af62b56031c8f2852278c4a5f5756dc690c7..357a10e8250b084b325c6c2f97c886d2ba58b12d 100644 (file)
@@ -245,7 +245,7 @@ class RequestPort: public Port, public AtomicRequestProtocol,
     }
 };
 
-class M5_DEPRECATED MasterPort : public RequestPort
+class [[deprecated]] MasterPort : public RequestPort
 {
   public:
     MasterPort(const std::string& name, SimObject* _owner,
@@ -449,7 +449,7 @@ class ResponsePort : public Port, public AtomicResponseProtocol,
     }
 };
 
-class M5_DEPRECATED SlavePort : public ResponsePort
+class [[deprecated]] SlavePort : public ResponsePort
 {
   public:
     SlavePort(const std::string& name, SimObject* _owner,