From 89b3616d7e3318637c1550605703f140ecf7b65f Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Sun, 25 Jan 2015 07:22:56 -0500 Subject: arm: always set the IsFirstMicroop flag While the IsFirstMicroop flag exists it was only occasionally used in the ARM instructions that gem5 microOps and therefore couldn't be relied on to be correct. --- src/cpu/static_inst.hh | 1 + 1 file changed, 1 insertion(+) (limited to 'src/cpu') diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh index 42e215388..7206a2616 100644 --- a/src/cpu/static_inst.hh +++ b/src/cpu/static_inst.hh @@ -171,6 +171,7 @@ class StaticInst : public RefCounted, public StaticInstFlags bool isMicroBranch() const { return flags[IsMicroBranch]; } //@} + void setFirstMicroop() { flags[IsFirstMicroop] = true; } void setLastMicroop() { flags[IsLastMicroop] = true; } void setDelayedCommit() { flags[IsDelayedCommit] = true; } void setFlag(Flags f) { flags[f] = true; } -- cgit v1.2.3