We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e91ba10 commit 46b3d4eCopy full SHA for 46b3d4e
capa/features/extractors/viv/helpers.py
@@ -36,7 +36,4 @@ def is_xor(insn: envi.Opcode):
36
37
38
def is_zxor(insn: envi.Opcode):
39
- if is_xor(insn):
40
- return insn.opers[0] == insn.opers[1]
41
-
42
- return False
+ return is_xor(insn) and insn.opers[0] == insn.opers[1]
0 commit comments