ARM: Make all ARM uops delayed commit.

This commit is contained in:
Ali Saidi
2010-11-08 13:58:22 -06:00
parent 0ea794bcf4
commit f4f5d03ed2
3 changed files with 21 additions and 6 deletions

View File

@@ -263,6 +263,8 @@ class StaticInstBase : public RefCounted
//@}
void setLastMicroop() { flags[IsLastMicroop] = true; }
void setDelayedCommit() { flags[IsDelayedCommit] = true; }
/// Operation class. Used to select appropriate function unit in issue.
OpClass opClass() const { return _opClass; }
};