From: Korey Sewell Date: Mon, 3 Jul 2006 03:27:13 +0000 (-0400) Subject: typo ... change 'single_thread' to 'round_robin_policy' X-Git-Tag: m5_2.0_beta1~36^2~32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf58578ba120186947f382893d2e370bd6e436ce;p=gem5.git typo ... change 'single_thread' to 'round_robin_policy' --HG-- extra : convert_revision : a4a5cb90557f786d42c6178bc6e268312c5ecbee --- 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;