Fix nonmatching detection

This commit is contained in:
notyourav 2021-05-05 11:34:09 -07:00 committed by GitHub
parent 5215af9165
commit 5556476425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def GetNonMatchingSize(path):
for asmLine in asmLines:
if len(re.findall(NON_ASM_PATTERN, asmLine, re.DOTALL)) == 0:
size += 4
size += 2
return size