diff options
author | Curtis Dunham <Curtis.Dunham@arm.com> | 2014-04-29 16:05:02 -0500 |
---|---|---|
committer | Curtis Dunham <Curtis.Dunham@arm.com> | 2014-04-29 16:05:02 -0500 |
commit | 4a3f11149d791284a012af71067f6b2199aa165c (patch) | |
tree | c960b2f2c5e23fc37e238f423a8bbc3b73419213 /src/sim/serialize.hh | |
parent | 035a82ee2c7e9ee72163a6559f721b242427906d (diff) | |
download | gem5-4a3f11149d791284a012af71067f6b2199aa165c.tar.xz |
arm: use condition code registers for ARM ISA
Analogous to ee049bf (for x86). Requires a bump of the checkpoint version
and corresponding upgrader code to move the condition code register values
to the new register file.
Diffstat (limited to 'src/sim/serialize.hh')
-rw-r--r-- | src/sim/serialize.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/serialize.hh b/src/sim/serialize.hh index 2bf85bdf5..d3c9bb40b 100644 --- a/src/sim/serialize.hh +++ b/src/sim/serialize.hh @@ -58,7 +58,7 @@ class EventQueue; * SimObject shouldn't cause the version number to increase, only changes to * existing objects such as serializing/unserializing more state, changing sizes * of serialized arrays, etc. */ -static const uint64_t gem5CheckpointVersion = 0x000000000000000c; +static const uint64_t gem5CheckpointVersion = 0x000000000000000d; template <class T> void paramOut(std::ostream &os, const std::string &name, const T ¶m); |