diff options
author | Iru Cai <mytbk920423@gmail.com> | 2019-05-31 15:47:23 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2019-05-31 15:47:23 +0800 |
commit | 2919be5b65c104e53f51e82d65e452a6192ddd12 (patch) | |
tree | c18d7102d789c532100d070385a07a84183336f3 | |
parent | bc3bc1ded7ba0f73cd98db0fbc2f80ff4d53b4d2 (diff) | |
download | gem5-is-ift.tar.xz |
fix nameis-ift
Change-Id: I83cf9f8f4d8fde48536bc662c46e560b17082107
-rw-r--r-- | src/cpu/base_dyn_inst.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/base_dyn_inst.hh b/src/cpu/base_dyn_inst.hh index 6301864b7..01a2d1c80 100644 --- a/src/cpu/base_dyn_inst.hh +++ b/src/cpu/base_dyn_inst.hh @@ -334,11 +334,11 @@ class BaseDynInst : public ExecContext, public RefCounted bool needDeletePostReq() const { return instFlags[NeedDeletePostReq]; } void needDeletePostReq(bool f) { instFlags[NeedDeletePostReq] = f; } - bool fenceDelay() const { return instFlags[ReadyToExpose]; } - void fenceDelay(bool f) { instFlags[ReadyToExpose] = f; } + bool fenceDelay() const { return instFlags[FenceDelay]; } + void fenceDelay(bool f) { instFlags[FenceDelay] = f; } - bool readyToExpose() const { return instFlags[FenceDelay]; } - void readyToExpose(bool f) { instFlags[FenceDelay] = f; } + bool readyToExpose() const { return instFlags[ReadyToExpose]; } + void readyToExpose(bool f) { instFlags[ReadyToExpose] = f; } bool hitInvalidation() const { return instFlags[HitInvalidation]; } void hitInvalidation(bool f) { instFlags[HitInvalidation] = f; } |