Spaces:
Sleeping
Sleeping
Commit ·
930add3
1
Parent(s): e6c2c9f
trim
Browse files
main.py
CHANGED
|
@@ -80,6 +80,7 @@ def compile(compiler, flags, source):
|
|
| 80 |
capture_output=True,
|
| 81 |
text=True
|
| 82 |
).stdout
|
|
|
|
| 83 |
|
| 84 |
if result.returncode == 0:
|
| 85 |
return relocs, compiled_bytes, compile_output, disassembly
|
|
|
|
| 80 |
capture_output=True,
|
| 81 |
text=True
|
| 82 |
).stdout
|
| 83 |
+
relocs = trim(relocs, 3)
|
| 84 |
|
| 85 |
if result.returncode == 0:
|
| 86 |
return relocs, compiled_bytes, compile_output, disassembly
|