diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2004-03-05 06:14:33 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2004-03-05 06:14:33 -0500 |
commit | 12662c0b6d765ccfd9ac17ff810560cea62b2e7a (patch) | |
tree | 91d97106276dea55b4e42c3944f62b2a8ff3748f /cpu/exec_context.cc | |
parent | 8434ae9b03f889965fa6c075b99345e3e197c675 (diff) | |
download | gem5-12662c0b6d765ccfd9ac17ff810560cea62b2e7a.tar.xz |
nother fix
cpu/exec_context.cc:
nother little bug...forgot to pop off stack as i read off it
sim/system.cc:
forgot to pop off stack as i read off it
--HG--
extra : convert_revision : d1f691c0a9f0fa22281c717ee465d8a5f1e45c13
Diffstat (limited to 'cpu/exec_context.cc')
-rw-r--r-- | cpu/exec_context.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu/exec_context.cc b/cpu/exec_context.cc index 20ab64bc4..06bd741f2 100644 --- a/cpu/exec_context.cc +++ b/cpu/exec_context.cc @@ -118,6 +118,8 @@ ExecContext::serialize(ostream &os) for (int j=0; j<size; ++j) { top = stack->top(); paramOut(os, csprintf("stackpos[%d]",j), top->name); + delete top; + stack->pop(); } } else { SERIALIZE_SCALAR(ctx); |