ejschwartz commited on
Commit
9b9d925
·
1 Parent(s): 784e69f
Files changed (1) hide show
  1. main.py +2 -1
main.py CHANGED
@@ -111,7 +111,8 @@ def compile(compiler, flags, source):
111
 
112
 
113
  print(f"relocs: {relocs_byte_range}")
114
- print(print_match_summary(b"test", compiled_bytes, wildcard_offsets_str2=relocs_byte_range))
 
115
 
116
  if result.returncode == 0:
117
  return json_relocs, compiled_bytes, compile_output, disassembly
 
111
 
112
 
113
  print(f"relocs: {relocs_byte_range}")
114
+ summary = print_match_summary(b"test", compiled_bytes, wildcard_offsets_str2=relocs_byte_range)
115
+ print(f"summary: {summary}")
116
 
117
  if result.returncode == 0:
118
  return json_relocs, compiled_bytes, compile_output, disassembly