aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/torture/asmcheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/torture/asmcheck.py')
-rw-r--r--scripts/torture/asmcheck.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/torture/asmcheck.py b/scripts/torture/asmcheck.py
index 4e5e4e3..8a22c67 100644
--- a/scripts/torture/asmcheck.py
+++ b/scripts/torture/asmcheck.py
@@ -9,6 +9,7 @@ def match_insns(s1, s2):
if s1 == "*" or s1 == s2: return True
if s1 == "jal" and s2.startswith("j"): return True
if s1 == "addi" and s2 in ["li", "mv"]: return True
+ if s1 == "xori" and s2 == "not": return True
if s1 == "sub" and s2 == "neg": return True
if s1.startswith("b") and s2.startswith("b"): return True
if s1.startswith("s") and s2.startswith("s"): return True