summaryrefslogtreecommitdiff
path: root/src/arch/sparc/decoder.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/sparc/decoder.hh')
-rw-r--r--src/arch/sparc/decoder.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/sparc/decoder.hh b/src/arch/sparc/decoder.hh
index 897d112dc..6fa506f37 100644
--- a/src/arch/sparc/decoder.hh
+++ b/src/arch/sparc/decoder.hh
@@ -46,7 +46,7 @@ class Decoder
// The extended machine instruction being generated
ExtMachInst emi;
bool instDone;
- MiscReg asi;
+ RegVal asi;
public:
Decoder(ISA* isa = nullptr) : instDone(false), asi(0)
@@ -93,7 +93,7 @@ class Decoder
}
void
- setContext(MiscReg _asi)
+ setContext(RegVal _asi)
{
asi = _asi;
}