diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-01 22:11:39 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-01 22:11:39 -0700 |
commit | b8f064c88c48c549987a13eb4f4350bc6745ab15 (patch) | |
tree | 1fd7d51b1ba40ab8988661402cbe50193f4a9ce9 /src/arch/arm/insts | |
parent | f409d7819d58226af2b6d7c0b95c801316180e76 (diff) | |
download | gem5-b8f064c88c48c549987a13eb4f4350bc6745ab15.tar.xz |
ARM: Use the new DataOp format to simplify the decoder.
Diffstat (limited to 'src/arch/arm/insts')
-rw-r--r-- | src/arch/arm/insts/static_inst.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/insts/static_inst.cc b/src/arch/arm/insts/static_inst.cc index 011604d35..f3ad1127b 100644 --- a/src/arch/arm/insts/static_inst.cc +++ b/src/arch/arm/insts/static_inst.cc @@ -388,7 +388,7 @@ ArmStaticInst::printDataInst(std::ostream &os) const { printMnemonic(os, machInst.sField ? "s" : ""); //XXX It would be nice if the decoder figured this all out for us. - unsigned opcode = machInst.opcode24_21; + unsigned opcode = machInst.opcode; bool firstOp = true; // Destination |