diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:14 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-05-12 15:01:14 -0400 |
commit | 98b1452058ae7e82df7cb7c0373c62a97981a2b9 (patch) | |
tree | dcc1d95c125bc692daac52ff7aecf1d04dd12c6c /src/cpu/inorder/cpu.hh | |
parent | 2012202b06a620998709f605f8f8692ad718294d (diff) | |
download | gem5-98b1452058ae7e82df7cb7c0373c62a97981a2b9.tar.xz |
inorder-miscregs: Fix indexing for misc. reg operands and update result-types for better tracing of these types of values
Diffstat (limited to 'src/cpu/inorder/cpu.hh')
-rw-r--r-- | src/cpu/inorder/cpu.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/inorder/cpu.hh b/src/cpu/inorder/cpu.hh index 8b2442ac0..7c1ad8264 100644 --- a/src/cpu/inorder/cpu.hh +++ b/src/cpu/inorder/cpu.hh @@ -247,6 +247,7 @@ class InOrderCPU : public BaseCPU /** The Pipeline Stages for the CPU */ PipelineStage *pipelineStage[ThePipeline::NumStages]; + /** Program Counters */ TheISA::IntReg PC[ThePipeline::MaxThreads]; TheISA::IntReg nextPC[ThePipeline::MaxThreads]; TheISA::IntReg nextNPC[ThePipeline::MaxThreads]; |