Apply 'make format'

This commit is contained in:
github action 2023-01-31 13:54:55 +00:00
parent 0b49e7cbd2
commit 2c330a18d7

View File

@ -20,9 +20,11 @@ print("#define VERILATOR_INCLUDED")
re_arg_d = re.compile(r'^-D([^=]+)=(.*)')
def include(arg):
print("#include \"%s\"" % (arg))
for arg in sys.argv[1:]:
match_d = re_arg_d.match(arg)
if match_d: