Files
wasmtime/meta/cretonne/settings.py
Jakob Stoklund Olesen cfeefde3fc Scaffolding for defining settings.
Settings can be defined globally or per-ISA. They are available to code through
a generated Settings struct with accessor methods per setting.
2016-08-05 15:50:57 -07:00

14 lines
283 B
Python

"""
Cretonne shared settings.
This module defines settings are are relevant for all code generators.
"""
from . import SettingGroup, BoolSetting
group = SettingGroup('shared')
enable_simd = BoolSetting("Enable the use of SIMD instructions", default=True)
group.close(globals())