summaryrefslogtreecommitdiff
path: root/src/mem/request.hh
diff options
context:
space:
mode:
authorGiacomo Travaglini <giacomo.travaglini@arm.com>2019-11-28 13:52:52 +0000
committerGiacomo Travaglini <giacomo.travaglini@arm.com>2019-12-09 13:18:48 +0000
commit8a1f195c2b6bcd3b73c00336af9a58517ebccd4c (patch)
tree83be1a7a89fbc3c4ae7bf86ada661a8db863b9fd /src/mem/request.hh
parent1e5f84b376fbb51fb3a4b48aa6d774caa89eb71f (diff)
downloadgem5-8a1f195c2b6bcd3b73c00336af9a58517ebccd4c.tar.xz
mem: Add byteEnable copy to Request copy constructor
Change-Id: Ie97543e62524bb244ae65eef096411af4605c175 Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23283 Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/mem/request.hh')
-rw-r--r--src/mem/request.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/request.hh b/src/mem/request.hh
index 50944932e..90d1ee3dd 100644
--- a/src/mem/request.hh
+++ b/src/mem/request.hh
@@ -478,6 +478,7 @@ class Request
Request(const Request& other)
: _paddr(other._paddr), _size(other._size),
+ _byteEnable(other._byteEnable),
_masterId(other._masterId),
_flags(other._flags),
_memSpaceConfigFlags(other._memSpaceConfigFlags),