From 27fadafef2016b171b2d43bc654f74c58df1d63b Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Wed, 18 Oct 2023 18:33:02 +0300 Subject: [PATCH] isa/caller: remove redundant check --- src/openpower/decoder/isa/caller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2