Enable the IL verifier by default.

Change the default value for the "enable_verifier" setting so the
verifier runs unless it is explicitly disabled.

Most projects using Cretonne are best off running the verifier always
until they start caring about compile time performance. Then they can
easily disable the verifier.
This commit is contained in:
Jakob Stoklund Olesen
2017-12-06 08:30:48 -08:00
parent c09ad06f96
commit f106e4266a
4 changed files with 5 additions and 15 deletions

View File

@@ -24,7 +24,8 @@ enable_verifier = BoolSetting(
This makes compilation slower but catches many bugs. The verifier is
disabled by default, except when reading Cretonne IL from a text file.
""")
""",
default=True)
is_64bit = BoolSetting("Enable 64-bit code generation")