diff options
author | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2019-11-28 13:52:52 +0000 |
---|---|---|
committer | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2019-12-09 13:18:48 +0000 |
commit | 8a1f195c2b6bcd3b73c00336af9a58517ebccd4c (patch) | |
tree | 83be1a7a89fbc3c4ae7bf86ada661a8db863b9fd | |
parent | 1e5f84b376fbb51fb3a4b48aa6d774caa89eb71f (diff) | |
download | gem5-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>
-rw-r--r-- | src/mem/request.hh | 1 |
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), |