This commit is contained in:
Irmen de Jong
2018-09-30 23:13:35 +02:00
parent 623b42cc14
commit 6d343bd75d
59 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1,12 @@
import cProfile
from il65.compile import PlyParser
from il65.optimize import optimize
def parse():
parser = PlyParser(enable_floats=True)
parsed_module = parser.parse_file("testsource/large.ill")
optimize(parsed_module)
cProfile.run("parse()", filename="profile.dat")