diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-07-02 23:27:13 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-07-02 23:27:13 -0400 |
commit | cf58578ba120186947f382893d2e370bd6e436ce (patch) | |
tree | 115b337906b47e7fb63d4515fade8d92118799ea | |
parent | c8b3d8a1edbab505e5f9748cfa1ee866ed1fb02f (diff) | |
download | gem5-cf58578ba120186947f382893d2e370bd6e436ce.tar.xz |
typo ... change 'single_thread' to 'round_robin_policy'
--HG--
extra : convert_revision : a4a5cb90557f786d42c6178bc6e268312c5ecbee
-rw-r--r-- | src/cpu/o3/alpha/cpu_builder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/alpha/cpu_builder.cc b/src/cpu/o3/alpha/cpu_builder.cc index 12d083a43..490305cbf 100644 --- a/src/cpu/o3/alpha/cpu_builder.cc +++ b/src/cpu/o3/alpha/cpu_builder.cc @@ -377,7 +377,7 @@ CREATE_SIM_OBJECT(DerivO3CPU) std::string single_thread = "SingleThread"; if (actual_num_threads > 1 && single_thread.compare(smtFetchPolicy) == 0) - params->smtFetchPolicy = single_thread; + params->smtFetchPolicy = round_robin_policy; else params->smtFetchPolicy = smtFetchPolicy; |