READ_MODIFY_WRITE flag fix (#922)

Change bit for Request::READ_MODIFY_WRITE, which was the same as
Request::ACQUIRE.

Signed-off-by: Tiago Mück <tiago.muck@arm.com>
This commit is contained in:
Tiago Mück
2024-03-11 10:32:11 -05:00
committed by GitHub
parent bbde68c08c
commit 942979162a

View File

@@ -158,7 +158,7 @@ class Request : public Extensible<Request>
MEM_SWAP = 0x00400000,
MEM_SWAP_COND = 0x00800000,
/** This request is a read which will be followed by a write. */
READ_MODIFY_WRITE = 0x00020000,
READ_MODIFY_WRITE = 0x0020000000000000,
/** The request is a prefetch. */
PREFETCH = 0x01000000,