Files
wasmtime/meta/target/__init__.py
Jakob Stoklund Olesen ea46a17f56 PEP8 formatting.
2016-05-12 13:37:03 -07:00

18 lines
387 B
Python

"""
Cretonne target definitions
---------------------------
The :py:mod:`target` package contains sub-packages for each target instruction
set architecture supported by Cretonne.
"""
from . import riscv
def all_targets():
"""
Get a list of all the supported targets. Each target is represented as a
:py:class:`cretonne.Target` instance.
"""
return [riscv.target]