diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 18:22:36 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 18:22:36 -0700 |
commit | 3eeda8008dc3899d20747e152342cf7a5648ea25 (patch) | |
tree | 077eb7c3ad050d5eb04ab4b0f72236d9b4a25467 /src/cpu/o3/alpha | |
parent | 0acf891c323aeda8d38c08d9d36789a9edee87e2 (diff) | |
download | gem5-3eeda8008dc3899d20747e152342cf7a5648ea25.tar.xz |
CPU: Make sure the system parameter gets set in the cpu builders. Other parameters need to be fixed as well.
--HG--
extra : convert_revision : 0401970a79855ee0a96eb29305346ce07b5c98ea
Diffstat (limited to 'src/cpu/o3/alpha')
-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 1aa3d1618..f569c048b 100644 --- a/src/cpu/o3/alpha/cpu_builder.cc +++ b/src/cpu/o3/alpha/cpu_builder.cc @@ -80,8 +80,8 @@ DerivO3CPUParams::create() params->itb = itb; params->dtb = dtb; -#if FULL_SYSTEM params->system = system; +#if FULL_SYSTEM params->profile = profile; params->do_quiesce = do_quiesce; |