diff options
Diffstat (limited to 'src/mem/packet.hh')
-rw-r--r-- | src/mem/packet.hh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mem/packet.hh b/src/mem/packet.hh index 407172f98..4aee81f9b 100644 --- a/src/mem/packet.hh +++ b/src/mem/packet.hh @@ -64,7 +64,6 @@ #include "base/logging.hh" #include "base/printable.hh" #include "base/types.hh" -#include "config/the_isa.hh" #include "mem/request.hh" #include "sim/core.hh" @@ -1124,16 +1123,6 @@ class Packet : public Printable template <typename T> T get(ByteOrder endian) const; -#if THE_ISA != NULL_ISA - /** - * Get the data in the packet byte swapped from guest to host - * endian. - */ - template <typename T> - T get() const - M5_DEPRECATED_MSG("The memory system should be ISA independent."); -#endif - /** Set the value in the data pointer to v as big endian. */ template <typename T> void setBE(T v); @@ -1149,13 +1138,6 @@ class Packet : public Printable template <typename T> void set(T v, ByteOrder endian); -#if THE_ISA != NULL_ISA - /** Set the value in the data pointer to v as guest endian. */ - template <typename T> - void set(T v) - M5_DEPRECATED_MSG("The memory system should be ISA independent."); -#endif - /** * Get the data in the packet byte swapped from the specified * endianness and zero-extended to 64 bits. |