summaryrefslogtreecommitdiff
path: root/src/arch/arm/remote_gdb.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2013-01-04 18:09:35 -0600
committerGabe Black <gblack@eecs.umich.edu>2013-01-04 18:09:35 -0600
commita83e74b37adc26afe4e69e59ed0092dafa63fc09 (patch)
tree5419dab639987b79738898cad8425656746d877e /src/arch/arm/remote_gdb.cc
parent1945f9963d95cdd244a4540519f3d9d1b9597767 (diff)
downloadgem5-a83e74b37adc26afe4e69e59ed0092dafa63fc09.tar.xz
ARM: Keep a copy of the fpscr len and stride fields in the decoder.
Avoid reading them every instruction, and also eliminate the last use of the thread context in the decoders. Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src/arch/arm/remote_gdb.cc')
-rw-r--r--src/arch/arm/remote_gdb.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/remote_gdb.cc b/src/arch/arm/remote_gdb.cc
index 37a46b052..4078630d6 100644
--- a/src/arch/arm/remote_gdb.cc
+++ b/src/arch/arm/remote_gdb.cc
@@ -293,7 +293,7 @@ RemoteGDB::setregs()
}
//FPSCR
- context->setMiscRegNoEffect(MISCREG_FPSCR, gdbregs.regs[REG_FPSCR]>>32);
+ context->setMiscReg(MISCREG_FPSCR, gdbregs.regs[REG_FPSCR]>>32);
}
void