diff --git a/src/cpu/o3/O3CPU.py b/src/cpu/o3/O3CPU.py index 7cbb5683f4..301b2166b9 100644 --- a/src/cpu/o3/O3CPU.py +++ b/src/cpu/o3/O3CPU.py @@ -52,7 +52,7 @@ class SMTQueuePolicy(ScopedEnum): vals = [ 'Dynamic', 'Partitioned', 'Threshold' ] class CommitPolicy(ScopedEnum): - vals = [ 'Aggressive', 'RoundRobin', 'OldestReady' ] + vals = [ 'RoundRobin', 'OldestReady' ] class O3CPU(BaseCPU): type = 'O3CPU' diff --git a/src/cpu/o3/commit.cc b/src/cpu/o3/commit.cc index ce624dacd9..2359c1a12d 100644 --- a/src/cpu/o3/commit.cc +++ b/src/cpu/o3/commit.cc @@ -1444,13 +1444,6 @@ Commit::getCommittingThread() { if (numThreads > 1) { switch (commitPolicy) { - - case CommitPolicy::Aggressive: - //If Policy is Aggressive, commit will call - //this function multiple times per - //cycle - return oldestReady(); - case CommitPolicy::RoundRobin: return roundRobin();