summaryrefslogtreecommitdiff
path: root/src/arch/arm/insts/pred_inst.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-06-27 00:30:23 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-06-27 00:30:23 -0700
commit1ea14b8fac34764a219407effba3211e3f8edc90 (patch)
treecd10943dd662c116825242887310aa3424086425 /src/arch/arm/insts/pred_inst.hh
parent56f1845471231f6b063a912c79c38e63cfbd7d59 (diff)
downloadgem5-1ea14b8fac34764a219407effba3211e3f8edc90.tar.xz
ARM: Show more information when disassembling data processing intstructions.
This will need more work, but it should be a lot closer.
Diffstat (limited to 'src/arch/arm/insts/pred_inst.hh')
-rw-r--r--src/arch/arm/insts/pred_inst.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/arch/arm/insts/pred_inst.hh b/src/arch/arm/insts/pred_inst.hh
index 65661efdd..38ac69358 100644
--- a/src/arch/arm/insts/pred_inst.hh
+++ b/src/arch/arm/insts/pred_inst.hh
@@ -82,8 +82,6 @@ class PredImmOp : public PredOp
if (rotate != 0)
rotated_carry = (rotated_imm >> 31) & 1;
}
-
- std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
};
/**
@@ -102,8 +100,6 @@ class PredIntOp : public PredOp
shift_size(machInst.shiftSize), shift(machInst.shift)
{
}
-
- std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
};
/**