summaryrefslogtreecommitdiff
path: root/src/arch/riscv/isa/formats/type.isa
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/riscv/isa/formats/type.isa')
-rw-r--r--src/arch/riscv/isa/formats/type.isa2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/riscv/isa/formats/type.isa b/src/arch/riscv/isa/formats/type.isa
index 75e842fd2..0f2ffe9c4 100644
--- a/src/arch/riscv/isa/formats/type.isa
+++ b/src/arch/riscv/isa/formats/type.isa
@@ -210,7 +210,7 @@ output decoder {{
Jump::branchTarget(ThreadContext *tc) const
{
PCState pc = tc->pcState();
- IntReg Rs1 = tc->readIntReg(_srcRegIdx[0]);
+ IntReg Rs1 = tc->readIntReg(_srcRegIdx[0].regIdx);
pc.set((Rs1 + imm)&~0x1);
return pc;
}