From: Dmitry Selyutin Date: Wed, 18 Oct 2023 15:33:02 +0000 (+0300) Subject: isa/caller: remove redundant check X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27fadafef2016b171b2d43bc654f74c58df1d63b;p=openpower-isa.git isa/caller: remove redundant check --- diff --git a/src/openpower/decoder/isa/caller.py b/src/openpower/decoder/isa/caller.py index 1099bbb7..880f9eef 100644 --- a/src/openpower/decoder/isa/caller.py +++ b/src/openpower/decoder/isa/caller.py @@ -1950,7 +1950,7 @@ class ISACaller(ISACallerHelper, ISAFPHelpers, StepLoop): log("call", ins_name, asmop, kind=LogKind.InstrInOuts) - if not self.is_svp64_mode and asmop in ("sc", "scv"): + if asmop in ("sc", "scv"): identifier = self.gpr(0) arguments = map(self.gpr, range(3, 9)) result = self.syscall(identifier, *arguments)