don't run duplicate check during debug because we allow duplicates during that, rename file

This commit is contained in:
JillianTo 2025-03-09 19:10:49 -04:00
parent 2365f4d697
commit 444ee2bda1

View File

@ -252,6 +252,7 @@ if not debug:
output_functs = list(set(tuple(funct) for funct in output_functs))
# Make sure there are no functions with the same starting address but different lengths
if not debug:
for i in range(len(output_functs)):
for j in range(i+1, len(output_functs)):
curr_funct_start = output_functs[i][0]