From 2919be5b65c104e53f51e82d65e452a6192ddd12 Mon Sep 17 00:00:00 2001 From: Iru Cai Date: Fri, 31 May 2019 15:47:23 +0800 Subject: fix name Change-Id: I83cf9f8f4d8fde48536bc662c46e560b17082107 --- src/cpu/base_dyn_inst.hh | 8 ++++---- 1 file 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; } -- cgit v1.2.3