summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2019-05-31 15:47:23 +0800
committerIru Cai <mytbk920423@gmail.com>2019-05-31 15:47:23 +0800
commit2919be5b65c104e53f51e82d65e452a6192ddd12 (patch)
treec18d7102d789c532100d070385a07a84183336f3
parentbc3bc1ded7ba0f73cd98db0fbc2f80ff4d53b4d2 (diff)
downloadgem5-2919be5b65c104e53f51e82d65e452a6192ddd12.tar.xz
fix nameis-ift
Change-Id: I83cf9f8f4d8fde48536bc662c46e560b17082107
-rw-r--r--src/cpu/base_dyn_inst.hh8
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; }