From e8d83738dadcaaa440982380d113490cfbc5ba37 Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Sat, 16 May 2020 11:20:40 -0400 Subject: [PATCH] Fix bug in branch's pipe_data --- src/soc/branch/pipe_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/branch/pipe_data.py b/src/soc/branch/pipe_data.py index 351ca5ec..7cd250dd 100644 --- a/src/soc/branch/pipe_data.py +++ b/src/soc/branch/pipe_data.py @@ -50,7 +50,7 @@ class BranchInputData(IntegerData): # convenience variables. not all of these are used at once self.ctr = self.srr0 = self.hsrr0 = self.spr2 - self.lr = self.tar = self.srr1 = self.hsrr1 = self.i.spr1 + self.lr = self.tar = self.srr1 = self.hsrr1 = self.spr1 self.msr = self.spr3 def __iter__(self): -- 2.30.2